Core: Cleanup headers in core/config

- `MainLoop` now forward-declared in `OS`
This commit is contained in:
Thaddeus Crews
2025-10-05 13:04:18 -05:00
parent d413181b8a
commit 5935a32e32
34 changed files with 41 additions and 6 deletions

View File

@@ -566,6 +566,7 @@ public: \
\
private:
class ClassDB;
class ScriptInstance;
class Object {
@@ -781,7 +782,7 @@ protected:
void _clear_internal_resource_paths(const Variant &p_var);
friend class ClassDB;
friend class ::ClassDB;
friend class PlaceholderExtensionInstance;
static void _add_class_to_classdb(const StringName &p_class, const StringName &p_inherits);

View File

@@ -39,6 +39,7 @@
#include "core/templates/paged_allocator.h"
#include "core/templates/rid.h"
#include "core/templates/safe_refcount.h"
#include "core/templates/self_list.h"
class WorkerThreadPool : public Object {
GDCLASS(WorkerThreadPool, Object)