31 lines
478 B
C
31 lines
478 B
C
|
|
||
|
/* 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
|