diff options
Diffstat (limited to 'src/script.cpp')
-rw-r--r-- | src/script.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/script.cpp b/src/script.cpp index d471d65..ec82513 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -101,6 +101,11 @@ void ScriptSystem::scriptExport() "visible", &Render::visible, "texture", &Render::texture); + lua.new_usertype<Velocity>("Velocity", + sol::constructors<Velocity(float, float), Velocity()>(), + "x", &Velocity::x, + "y", &Velocity::y); + auto gamespace = lua["game"].get_or_create<sol::table>(); gamespace.set_function("spawn", func); } |