32 lines
371 B
C
32 lines
371 B
C
|
|
||
|
/* RJNetworkNode.h */
|
||
|
|
||
|
#ifndef ROKOJORI__NETWORK_NODE_H
|
||
|
#define ROKOJORI__NETWORK_NODE_H
|
||
|
|
||
|
#include "scene/main/node.h"
|
||
|
|
||
|
class RJNetworkNode : public Node
|
||
|
{
|
||
|
GDCLASS( RJNetworkNode, Node );
|
||
|
|
||
|
protected:
|
||
|
static void _bind_methods();
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
public:
|
||
|
|
||
|
|
||
|
|
||
|
// Constructor
|
||
|
RJNetworkNode();
|
||
|
|
||
|
// Destructor
|
||
|
~RJNetworkNode();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // ROKOJORI__NETWORK_NODE_H
|