29 lines
375 B
C
29 lines
375 B
C
|
|
||
|
/* RJUpdatable.h */
|
||
|
|
||
|
#ifndef ROKOJORI_CORE__UPDATABLE_H
|
||
|
#define ROKOJORI_CORE__UPDATABLE_H
|
||
|
|
||
|
#include "./RJNetworkNode.h"
|
||
|
|
||
|
|
||
|
class RJUpdatable : public RJNetworkNode
|
||
|
{
|
||
|
GDCLASS(RJUpdatable, RJNetworkNode);
|
||
|
|
||
|
protected:
|
||
|
static void _bind_methods();
|
||
|
|
||
|
|
||
|
public:
|
||
|
|
||
|
GDVIRTUAL1( update, double );
|
||
|
|
||
|
RJUpdatable();
|
||
|
|
||
|
~RJUpdatable();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // ROKOJORI_CORE__UPDATABLE_H
|