22 lines
275 B
C++
22 lines
275 B
C++
![]() |
#include "common.hpp"
|
||
|
#include "features.hpp"
|
||
|
#include "logger.hpp"
|
||
|
#include "natives.hpp"
|
||
|
#include "script.hpp"
|
||
|
|
||
|
namespace big
|
||
|
{
|
||
|
void features::run_tick()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void features::script_func()
|
||
|
{
|
||
|
while (true)
|
||
|
{
|
||
|
run_tick();
|
||
|
script::get_current()->yield();
|
||
|
}
|
||
|
}
|
||
|
}
|