diff options
| author | chai <chaifix@163.com> | 2020-09-10 20:55:10 +0800 |
|---|---|---|
| committer | chai <chaifix@163.com> | 2020-09-10 20:55:10 +0800 |
| commit | d9c2d065698641837bc75ded236b23d5aaa36fd4 (patch) | |
| tree | 9acb1fe3f61121bc5963b9b76f22265d8cd00f0e /src/math/math.cpp | |
| parent | 229a3937a3b99a175b551e28d09b9a45d37c44f7 (diff) | |
*table string comment
Diffstat (limited to 'src/math/math.cpp')
| -rw-r--r-- | src/math/math.cpp | 37 |
1 files changed, 0 insertions, 37 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 -{ - -}; |
