aboutsummaryrefslogtreecommitdiff
path: root/src/shared/lua_api/common.h
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2017-12-26 00:57:52 -0500
committerAlexander Pickering <alexandermpickering@gmail.com>2017-12-26 00:57:52 -0500
commit35b7c646fd7f80b64c1ef49b6d81f9df9bc1b940 (patch)
treed345f620b51ae1ad1d7923e572a6b07ed8731ee5 /src/shared/lua_api/common.h
parentcc12503339004bae2f945e7f7339fc845b2a194f (diff)
downloadbrokengine-35b7c646fd7f80b64c1ef49b6d81f9df9bc1b940.tar.gz
brokengine-35b7c646fd7f80b64c1ef49b6d81f9df9bc1b940.tar.bz2
brokengine-35b7c646fd7f80b64c1ef49b6d81f9df9bc1b940.zip
Major update
Diffstat (limited to 'src/shared/lua_api/common.h')
-rw-r--r--src/shared/lua_api/common.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shared/lua_api/common.h b/src/shared/lua_api/common.h
index 81dc3a4..9260706 100644
--- a/src/shared/lua_api/common.h
+++ b/src/shared/lua_api/common.h
@@ -9,5 +9,8 @@ void loadLLibs(lua_State*);
int pushvector3i(lua_State*,long,long,long);
int pushvector3d(lua_State*,double,double,double);
+int pushvector2i(lua_State*,long,long);
+
int popvector3i(lua_State*,long*,long*,long*);
int popvector3d(lua_State*,double*,double*,double*);
+int popvector2i(lua_State*,long*,long*);