This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/BigBaseV2/src/features.cpp

26 lines
317 B
C++
Raw Normal View History

2021-05-18 23:03:42 +02:00
#include "common.hpp"
2019-03-21 20:18:31 +01:00
#include "features.hpp"
2021-05-18 23:03:42 +02:00
#include "logger.hpp"
#include "natives.hpp"
2019-03-21 20:18:31 +01:00
#include "script.hpp"
namespace big
{
void features::run_tick()
{
}
void features::script_func()
{
while (true)
{
TRY_CLAUSE
{
run_tick();
}
EXCEPT_CLAUSE
2019-03-21 20:18:31 +01:00
script::get_current()->yield();
}
}
}