2024-03-24 15:29:50 +00:00
|
|
|
/* RJAction.h */
|
|
|
|
|
2024-05-12 16:25:45 +00:00
|
|
|
#ifndef ROKOJORI__ACTION_H
|
|
|
|
#define ROKOJORI__ACTION_H
|
2024-03-24 15:29:50 +00:00
|
|
|
|
|
|
|
#include "./RJNetworkNode.h"
|
|
|
|
|
|
|
|
class RJAction : public RJNetworkNode
|
|
|
|
{
|
|
|
|
GDCLASS(RJAction, RJNetworkNode);
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
GDVIRTUAL0( _onTrigger )
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
void trigger();
|
|
|
|
|
|
|
|
RJAction();
|
|
|
|
~RJAction();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2024-05-12 16:25:45 +00:00
|
|
|
#endif // ROKOJORI__ACTION_H
|