rj-action-library-cpp/RJSequenceAction.h

31 lines
478 B
C
Raw Normal View History

2024-05-08 07:17:37 +00:00
/* RJSequenceAction.h */
#ifndef ROKOJORI_CORE__SEQUENCE_ACTION_H
#define ROKOJORI_CORE__SEQUENCE_ACTION_H
#include "./RJAction.h"
class RJSequenceAction : public RJAction
{
GDCLASS(RJSequenceAction, RJAction);
protected:
static void _bind_methods();
public:
GDVIRTUAL0( dispatchStartEvent );
GDVIRTUAL0( dispatchCancelEvent );
GDVIRTUAL0( dispatchEndEvent );
RJSequenceAction();
~RJSequenceAction();
};
#endif // ROKOJORI_CORE__SEQUENCE_ACTION_H