blob: 2bf803b0c6f4c0b89dcc37cfa024f59ed30ffc99 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef HONEY_GLM_H
#define HONEY_GLM_H
#include <lua.h>
void setup_glm(lua_State *L, int honey_index);
void setup_mat4(lua_State *L, int glm_index);
void setup_transform(lua_State *L, int glm_index);
#endif
|