| 6 | { |
| 7 | |
| 8 | class PlayerInterface : public ModuleBase |
| 9 | { |
| 10 | public: |
| 11 | using ModuleBase::ModuleBase; |
| 12 | virtual void setup(); |
| 13 | private: |
| 14 | static int setmedia(lua_State *L); |
| 15 | static int curfile(lua_State *L); |
| 16 | static int property(lua_State *L); |
| 17 | static int command(lua_State *L); |
| 18 | static int optgroups(lua_State *L); |
| 19 | static int setoptgroup(lua_State *L); |
| 20 | }; |
| 21 | |
| 22 | } |
| 23 | #endif // LUA_PLAYERINTERFACE_H |