32 lines
750 B
C++
32 lines
750 B
C++
/**
|
|
* bt_selector.h
|
|
* =============================================================================
|
|
* Copyright 2021-2024 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_SELECTOR_H
|
|
#define BT_SELECTOR_H
|
|
|
|
#include "../bt_composite.h"
|
|
|
|
class BTSelector : public BTComposite {
|
|
GDCLASS(BTSelector, BTComposite);
|
|
TASK_CATEGORY(Composites);
|
|
|
|
private:
|
|
int last_running_idx = 0;
|
|
|
|
protected:
|
|
static void _bind_methods() {}
|
|
|
|
virtual void _enter() override;
|
|
virtual Status _tick(double p_delta) override;
|
|
};
|
|
|
|
#endif // BT_SELECTOR_H
|