summary refs log tree commit diff stats
path: root/src/script_system.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/script_system.cpp')
-rw-r--r--src/script_system.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/script_system.cpp b/src/script_system.cpp index 8fd5028..0fa0c1b 100644 --- a/src/script_system.cpp +++ b/src/script_system.cpp
@@ -31,7 +31,8 @@ ScriptSystem::ScriptSystem(Game& game) : game_(game) {
31 31
32 engine_.new_usertype<CharacterSystem>( 32 engine_.new_usertype<CharacterSystem>(
33 "character", 33 "character",
34 "startRunning", &CharacterSystem::startRunning); 34 "startRunning", &CharacterSystem::startRunning,
35 "halt", &CharacterSystem::halt);
35 36
36 engine_.new_usertype<Mixer>( 37 engine_.new_usertype<Mixer>(
37 "mixer", 38 "mixer",