12 lines
154 B
C++
12 lines
154 B
C++
#pragma once
|
|
|
|
#include "../event.hpp"
|
|
|
|
namespace scripting::lua::engine
|
|
{
|
|
void start();
|
|
void stop();
|
|
void notify(const event& e);
|
|
void run_frame();
|
|
}
|