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 7889148..56a6012 100644 --- a/src/script_system.cpp +++ b/src/script_system.cpp
@@ -55,7 +55,8 @@ ScriptSystem::ScriptSystem(Game& game) : game_(game) {
55 "solid", &Sprite::solid, 55 "solid", &Sprite::solid,
56 "behaviourType", &Sprite::behaviourType, 56 "behaviourType", &Sprite::behaviourType,
57 "followSpriteId", &Sprite::followSpriteId, 57 "followSpriteId", &Sprite::followSpriteId,
58 "interactionScript", &Sprite::interactionScript); 58 "interactionScript", &Sprite::interactionScript,
59 "opacity", &Sprite::opacity);
59 60
60 engine_.new_usertype<MessageSystem>( 61 engine_.new_usertype<MessageSystem>(
61 "message", 62 "message",