YouDunIt/modules/you_done_it/server_node.h

13 lines
220 B
C++

#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);
};