rj-action-library-cpp/RJUpdatable.h

32 lines
365 B
C++

/* RJUpdatable.h */
#ifndef ROKOJORI__UPDATABLE_H
#define ROKOJORI__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__UPDATABLE_H