limboai/bt/composites/bt_selector.h

27 lines
681 B
C
Raw Normal View History

/**
* bt_selector.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.
* =============================================================================
*/
2022-08-28 10:54:34 +00:00
#ifndef BT_SELECTOR_H
#define BT_SELECTOR_H
#include "bt_composite.h"
class BTSelector : public BTComposite {
GDCLASS(BTSelector, BTComposite);
private:
int last_running_idx = 0;
protected:
virtual void _enter() override;
virtual int _tick(double p_delta) override;
2022-08-28 10:54:34 +00:00
};
#endif // BT_SELECTOR_H