rj-action-library-cpp/RJUpdatable.h

38 lines
471 B
C++

/* RJUpdatable.h */
#ifndef ROKOJORI__UPDATABLE_H
#define ROKOJORI__UPDATABLE_H
#include "./RJGodotHeaders.h"
#include "./RJNetworkNode.h"
class RJUpdatable : public RJNetworkNode
{
GDCLASS( RJUpdatable, RJNetworkNode );
protected:
static void _bind_methods();
public:
// update( double delta ) : void
GDVIRTUAL1( update, double );
// Constructor
RJUpdatable();
// Destructor
~RJUpdatable();
};
#endif // ROKOJORI__UPDATABLE_H