18 lines
206 B
C++
18 lines
206 B
C++
|
#include "std_include.hpp"
|
||
|
#include "context.hpp"
|
||
|
|
||
|
namespace game
|
||
|
{
|
||
|
namespace scripting
|
||
|
{
|
||
|
scheduler::scheduler(context* context) : context_(context)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void scheduler::run_frame()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|