feat: updated godot version

This commit is contained in:
Sara Gerretsen 2026-04-04 19:38:56 +02:00
parent 0c508b0831
commit 42b028dbb5
4694 changed files with 236470 additions and 401376 deletions

View file

@ -37,7 +37,7 @@ class EditorDebuggerServer : public RefCounted {
GDSOFTCLASS(EditorDebuggerServer, RefCounted);
public:
typedef Ref<EditorDebuggerServer> (*CreateServerFunc)(const String &p_uri);
typedef EditorDebuggerServer *(*CreateServerFunc)(const String &p_uri);
private:
static HashMap<StringName, CreateServerFunc> protocols;
@ -47,7 +47,7 @@ public:
static void deinitialize();
static void register_protocol_handler(const String &p_protocol, CreateServerFunc p_func);
static Ref<EditorDebuggerServer> create(const String &p_protocol);
static EditorDebuggerServer *create(const String &p_protocol);
virtual String get_uri() const = 0;
virtual void poll() = 0;