summaryrefslogtreecommitdiff
path: root/src/math
diff options
context:
space:
mode:
Diffstat (limited to 'src/math')
-rw-r--r--src/math/math.cpp37
-rw-r--r--src/math/math.h9
2 files changed, 0 insertions, 46 deletions
diff --git a/src/math/math.cpp b/src/math/math.cpp
deleted file mode 100644
index acb215f..0000000
--- a/src/math/math.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-#include "math.h"
-
-#pragma comment(lib, "lua.lib")
-
-#define MATH_API __declspec(dllexport)
-
-MATH_API int /*__cdecl*/ luaopen_math_vector(lua_State* L)
-{
- lua_pushstring(L, "math.vector module");
-
- return 1;
-}
-
-
-extern "C" MATH_API int /*__cdecl*/ luaopen_math_matrix(lua_State* L)
-{
- lua_pushstring(L, "math.matrix module");
-
- return 1;
-}
-
-extern "C" MATH_API int /*__cdecl*/ luaopen_math_quaternion(lua_State* L)
-{
- lua_pushstring(L, "math.quaternion module");
-
- return 1;
-}
-
-MATH_API void foo()
-{
-
-}
-
-class MATH_API Vector
-{
-
-};
diff --git a/src/math/math.h b/src/math/math.h
deleted file mode 100644
index 494b725..0000000
--- a/src/math/math.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#pragma once
-
-extern "C" {
-#include "../lua51/lua.h"
-#include "../lua51/lualib.h"
-#include "../lua51/lauxlib.h"
-}
-
-//#define MATH_API __declspec(dllexport)