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, 3 insertions, 0 deletions
diff --git a/src/script_system.cpp b/src/script_system.cpp index e890dfc..0d82436 100644 --- a/src/script_system.cpp +++ b/src/script_system.cpp
@@ -59,6 +59,9 @@ ScriptSystem::ScriptSystem(Game& game) : game_(game) {
59 "character", 59 "character",
60 "addSpriteToParty", &CharacterSystem::addSpriteToParty, 60 "addSpriteToParty", &CharacterSystem::addSpriteToParty,
61 "transplantParty", &CharacterSystem::transplantParty, 61 "transplantParty", &CharacterSystem::transplantParty,
62 "breakUpParty", &CharacterSystem::breakUpParty,
63 "moveInDirection", &CharacterSystem::moveInDirection,
64 "stopDirecting", &CharacterSystem::stopDirecting,
62 "startRunning", &CharacterSystem::startRunning, 65 "startRunning", &CharacterSystem::startRunning,
63 "halt", &CharacterSystem::halt); 66 "halt", &CharacterSystem::halt);
64 67