iw5-mod/src/game/scripting/scheduler.cpp

18 lines
206 B
C++
Raw Normal View History

2019-01-20 18:29:13 +01:00
#include "std_include.hpp"
#include "context.hpp"
namespace game
{
namespace scripting
{
scheduler::scheduler(context* context) : context_(context)
{
}
void scheduler::run_frame()
{
}
}
}