aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-12-07 20:16:33 +0800
committerchai <chaifix@163.com>2018-12-07 20:16:33 +0800
commita059088c90fafb9ef21840db338f6bd04023b096 (patch)
tree00d2a75f1237011209fe79f3422da9fcb8e39b53 /tests
parentf065d7884d353c3545535850e4e8bdf8e10025ca (diff)
Diffstat (limited to 'tests')
-rw-r--r--tests/main.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
new file mode 100644
index 0000000..f82897f
--- /dev/null
+++ b/tests/main.cpp
@@ -0,0 +1,22 @@
+extern "C" {
+#include "lua.h"
+#include "lualib.h"
+#include "lauxlib.h"
+}
+#include "luax.h"
+
+using namespace Luax;
+
+class Player : public LuaxObject
+{
+public:
+
+
+};
+
+int main()
+{
+ lua_State* L = luaL_newstate();
+ LuaxState state(L);
+
+} \ No newline at end of file