ClassDB is now in C++

This commit is contained in:
2020-11-13 18:17:47 -05:00
parent 9523e367f1
commit a784f12aed
13 changed files with 217 additions and 78 deletions

View File

@@ -0,0 +1,10 @@
#ifndef LPX_TABLE_HPP
#define LPX_TABLE_HPP
#include "lua-headers.hpp"
int lpx_table_clear(lua_State *L);
int lpx_table_coerce(lua_State *L);
int luaopen_lpx_table (lua_State *L);
#endif // LPX_TABLE_HPP