aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/script.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/script.cpp b/src/script.cpp
index 6a8a370..89ae9e0 100644
--- a/src/script.cpp
+++ b/src/script.cpp
@@ -100,6 +100,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);
}