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.
2021-05-19 15:31:35 +02:00

21 lines
345 B
C++

#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
QUEUE_JOB_BEGIN_CLAUSE()
{
looped::weapons_gravity_gun();
}QUEUE_JOB_END_CLAUSE
}
}