feat: work on client logic & integration

This commit is contained in:
Sara Gerretsen 2025-10-11 23:11:09 +02:00
parent 21ed479960
commit df5e2c86dc
5 changed files with 173 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#pragma once
#include <scene/main/node.h>
class ServerNode : public Node {
GDCLASS(ServerNode, Node);
static void _bind_methods();
void enter_tree();
void exit_tree();
protected:
void _notification(int what);
};