#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) { TRY_CLAUSE { run_tick(); } EXCEPT_CLAUSE script::get_current()->yield(); } } }