aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-10-01 20:57:25 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-10-01 20:57:25 -0400
commit9d79ba461a399ce5c211dc7ca2fc49b8934c1cd7 (patch)
tree23135ab09b6c34c603b9695b77e532ddd3569155 /src
parent9b81db1fe44bf13d215cf2700495f2a8710a8ade (diff)
sound on jump
Diffstat (limited to 'src')
-rw-r--r--src/engine.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index ed5ba07..c6bec27 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -66,6 +66,9 @@ int Engine::init(void)
script->addToGameNamespace("puts",
bindInstance(&TextSystem::put,
systems.system<TextSystem>().get()));
+ script->addToGameNamespace("play",
+ bindInstance(&AudioSystem::playSound,
+ systems.system<AudioSystem>().get()));
script->init();