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.

16 lines
255 B
C++
Raw Normal View History

2021-05-19 14:35:30 +02:00
#include "backend.hpp"
#include "fiber_pool.hpp"
#include "script.hpp"
#include "looped/looped.hpp"
#include "core/globals.hpp"
namespace big
{
void backend::loop()
{
QUEUE_JOB_BEGIN_CLAUSE()
{
looped::self_noclip();
}QUEUE_JOB_END_CLAUSE
}
}