1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-17 14:11:06 +00:00

Remove unused classes and stray headers

Found by reviewing headers with 1 or less matching includes:
```
find -name thirdparty -prune -o -name "*.h" -exec basename {} \; | sort -u > headers
for header in $(cat headers); do echo "$header: "; rg -l "#include \"(.*/)?$header\"" | wc -l; done > list-includes
```
This commit is contained in:
Rémi Verschelde
2020-03-24 09:50:51 +01:00
parent c450d4d3bb
commit 9d24541597
22 changed files with 14 additions and 1664 deletions

View File

@@ -29,6 +29,7 @@
/*************************************************************************/
#include "shader_rd.h"
#include "core/string_builder.h"
#include "rasterizer_rd.h"
#include "servers/visual/rendering_device.h"