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
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
34 changed files with 41 additions and 6 deletions

View file

@ -30,10 +30,13 @@
#pragma once
#include "core/os/main_loop.h"
#include "core/string/ustring.h"
#include "core/string/string_name.h"
#include "core/templates/hash_map.h"
#include "core/templates/list.h"
class Object;
class Dictionary;
template <typename T>
class TypedArray;

View file

@ -30,7 +30,7 @@
#pragma once
#include "core/object/class_db.h"
#include "core/object/object.h"
#include "core/templates/rb_map.h"
template <typename T>