2024-05-08 07:17:37 +00:00
|
|
|
|
|
|
|
/* RJUpdatable.h */
|
|
|
|
|
2024-05-12 16:25:45 +00:00
|
|
|
#ifndef ROKOJORI__UPDATABLE_H
|
|
|
|
#define ROKOJORI__UPDATABLE_H
|
|
|
|
|
2024-05-08 07:17:37 +00:00
|
|
|
|
|
|
|
#include "./RJNetworkNode.h"
|
|
|
|
|
|
|
|
|
|
|
|
class RJUpdatable : public RJNetworkNode
|
|
|
|
{
|
|
|
|
GDCLASS(RJUpdatable, RJNetworkNode);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
GDVIRTUAL1( update, double );
|
|
|
|
|
|
|
|
RJUpdatable();
|
|
|
|
|
|
|
|
~RJUpdatable();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2024-05-12 16:25:45 +00:00
|
|
|
#endif // ROKOJORI__UPDATABLE_H
|