aboutsummaryrefslogtreecommitdiff
path: root/src/lua/audio/luaopen_Sound.cpp
blob: 0b494b8a1a1d7c179819d9a9f3acc7cb7a7aadc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "libs/luax/luax.h"

namespace jin
{
namespace lua
{

    static int l_play(lua_State* L)
    {

        return 0; 
    }

    static const luaL_Reg f[] = {
        {"play", l_play},
        {0, 0}
    };

    int luaopen_Sound(lua_State* L)
    {

        return 1; 
    }
}
}