11 lines
164 B
C++
Raw Normal View History

2021-09-10 03:21:51 +02:00
#pragma once
namespace ui_scripting::lua::engine
{
void start();
void stop();
void ui_event(const std::string&, const std::vector<int>&);
void run_frame();
}