diff options
| author | jussi | 2023-10-29 13:21:42 +0200 |
|---|---|---|
| committer | jussi | 2023-10-29 13:21:42 +0200 |
| commit | 76911d45a879838047b2845cd6124e9ca3af083a (patch) | |
| tree | 2ff82956451818faaa8956fa2af543fc32646a03 /include/lua_core.h | |
| parent | fd49d806cf1f54fb86c3ed7b9db499f473a3ef1d (diff) | |
| download | reilua-enhanced-76911d45a879838047b2845cd6124e9ca3af083a.tar.gz reilua-enhanced-76911d45a879838047b2845cd6124e9ca3af083a.tar.bz2 reilua-enhanced-76911d45a879838047b2845cd6124e9ca3af083a.zip | |
New object types for all types.
Diffstat (limited to 'include/lua_core.h')
| -rw-r--r-- | include/lua_core.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/lua_core.h b/include/lua_core.h index 2996b54..861b235 100644 --- a/include/lua_core.h +++ b/include/lua_core.h @@ -79,6 +79,10 @@ void uluaPushWave( lua_State *L, Wave wave ); void uluaPushSound( lua_State *L, Sound sound ); void uluaPushMusic( lua_State *L, Music music ); void uluaPushLight( lua_State *L, Light light ); +void uluaPushMaterial( lua_State *L, Material material ); +void uluaPushMesh( lua_State *L, Mesh mesh ); +void uluaPushModel( lua_State *L, Model model ); +void uluaPushModelAnimation( lua_State *L, ModelAnimation modelAnimation ); int uluaGetTableLen( lua_State *L ); int uluaGetTableLenIndex( lua_State *L, int index ); |
