mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Add GDSOFTCLASS to deeper inheritors of Object
This commit is contained in:
parent
1ce3101fbc
commit
e366471fdc
51 changed files with 154 additions and 18 deletions
|
|
@ -37,6 +37,8 @@
|
|||
#include "editor/settings/editor_settings.h"
|
||||
|
||||
class EditorDebuggerServerTCP : public EditorDebuggerServer {
|
||||
GDSOFTCLASS(EditorDebuggerServerTCP, EditorDebuggerServer);
|
||||
|
||||
private:
|
||||
Ref<TCPServer> server;
|
||||
String endpoint;
|
||||
|
|
|
|||
|
|
@ -34,6 +34,8 @@
|
|||
#include "core/object/ref_counted.h"
|
||||
|
||||
class EditorDebuggerServer : public RefCounted {
|
||||
GDSOFTCLASS(EditorDebuggerServer, RefCounted);
|
||||
|
||||
public:
|
||||
typedef EditorDebuggerServer *(*CreateServerFunc)(const String &p_uri);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue