30 lines
715 B
C++
30 lines
715 B
C++
/**
|
|
* bt_sequence.h
|
|
* =============================================================================
|
|
* Copyright 2021-2023 Serhii Snitsaruk
|
|
*
|
|
* Use of this source code is governed by an MIT-style
|
|
* license that can be found in the LICENSE file or at
|
|
* https://opensource.org/licenses/MIT.
|
|
* =============================================================================
|
|
*/
|
|
|
|
#ifndef BT_SEQUENCE_H
|
|
#define BT_SEQUENCE_H
|
|
|
|
#include "bt_composite.h"
|
|
|
|
#include "core/object/object.h"
|
|
|
|
class BTSequence : public BTComposite {
|
|
GDCLASS(BTSequence, BTComposite);
|
|
|
|
private:
|
|
int last_running_idx = 0;
|
|
|
|
protected:
|
|
virtual void _enter() override;
|
|
virtual int _tick(double p_delta) override;
|
|
};
|
|
|
|
#endif // BT_SEQUENCE_H
|