2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_fail.cpp
|
|
|
|
* =============================================================================
|
2024-03-21 20:38:57 +00:00
|
|
|
* Copyright 2021-2024 Serhii Snitsaruk
|
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;
|
|
|
|
}
|