20 lines
327 B
C
20 lines
327 B
C
|
/* bt_sequence.h */
|
||
|
|
||
|
#ifndef BT_SEQUENCE_H
|
||
|
#define BT_SEQUENCE_H
|
||
|
|
||
|
#import "bt_composite.h"
|
||
|
#include "core/object.h"
|
||
|
|
||
|
class BTSequence : public BTComposite {
|
||
|
GDCLASS(BTSequence, BTComposite);
|
||
|
|
||
|
private:
|
||
|
int last_running_idx = 0;
|
||
|
|
||
|
protected:
|
||
|
virtual void _enter();
|
||
|
virtual int _tick(float p_delta);
|
||
|
};
|
||
|
|
||
|
#endif // BT_SEQUENCE_H
|