Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/frontend/StarVoiceLuaBindings.hpp
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2023-07-18 17:36:51 +1000
committerKae <80987908+Novaenia@users.noreply.github.com>2023-07-18 17:36:51 +1000
commit6e1d29fe861ef5a81c5458cd8ae68d09f36e28c3 (patch)
tree36fb8a412649f1e749e2b9fc0268e80bc05251fb /source/frontend/StarVoiceLuaBindings.hpp
parent34bb0b54222c1c0f3450c56e76f89f192d77374b (diff)
Provide speaker info to HUD indicators
Diffstat (limited to 'source/frontend/StarVoiceLuaBindings.hpp')
-rw-r--r--source/frontend/StarVoiceLuaBindings.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/frontend/StarVoiceLuaBindings.hpp b/source/frontend/StarVoiceLuaBindings.hpp
new file mode 100644
index 0000000..8c83e54
--- /dev/null
+++ b/source/frontend/StarVoiceLuaBindings.hpp
@@ -0,0 +1,16 @@
+#ifndef STAR_VOICE_LUA_BINDINGS_HPP
+#define STAR_VOICE_LUA_BINDINGS_HPP
+
+#include "StarLua.hpp"
+
+namespace Star {
+
+STAR_CLASS(Voice);
+
+namespace LuaBindings {
+ LuaCallbacks makeVoiceCallbacks(Voice* voice);
+}
+
+}
+
+#endif