2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_fail.cpp
|
|
|
|
* =============================================================================
|
2025-01-21 01:18:59 +00:00
|
|
|
* Copyright (c) 2023-present Serhii Snitsaruk and the LimboAI contributors.
|
2023-07-21 09:50:06 +00:00
|
|
|
*
|
|
|
|
* 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-29 11:30:53 +00:00
|
|
|
|
|
|
|
#include "bt_fail.h"
|
|
|
|
|
2023-09-19 11:43:26 +00:00
|
|
|
BT::Status BTFail::_tick(double p_delta) {
|
2022-08-29 11:30:53 +00:00
|
|
|
return FAILURE;
|
|
|
|
}
|