[CSM] Add support for positional audio. (#5516)

Fixes parts of #5389.
This commit is contained in:
red-001
2017-04-06 07:14:31 +01:00
committed by Loïc Blot
parent 6da828c471
commit 4ee6be856d
5 changed files with 51 additions and 23 deletions

View File

@@ -65,6 +65,10 @@ class ModApiClient : public ModApiBase
// get_meta(pos)
static int l_get_meta(lua_State *L);
static int l_sound_play(lua_State *L);
static int l_sound_stop(lua_State *L);
public:
static void Initialize(lua_State *L, int top);
};