rj-action-library-cpp/RJAction.h

28 lines
344 B
C++

/* RJAction.h */
#ifndef ROKOJORI__ACTION_H
#define ROKOJORI__ACTION_H
#include "./RJNetworkNode.h"
class RJAction : public RJNetworkNode
{
GDCLASS(RJAction, RJNetworkNode);
protected:
static void _bind_methods();
GDVIRTUAL0( _onTrigger )
public:
void trigger();
RJAction();
~RJAction();
};
#endif // ROKOJORI__ACTION_H