diff options
author | pixel <pixel> | 2008-07-04 12:01:52 +0000 |
---|---|---|
committer | pixel <pixel> | 2008-07-04 12:01:52 +0000 |
commit | cee868801b55aa4302c91a46df8daf38388163e7 (patch) | |
tree | 1bd77d5167f0a18ff7beb603b1b359c7b8c459b1 /src/plugin-luagl.cc |
Adding project files.
Diffstat (limited to 'src/plugin-luagl.cc')
-rw-r--r-- | src/plugin-luagl.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/plugin-luagl.cc b/src/plugin-luagl.cc new file mode 100644 index 0000000..2f0b55c --- /dev/null +++ b/src/plugin-luagl.cc @@ -0,0 +1,10 @@ +#include <LuaGL.h> + +extern "C" { + +void init_plugin(Lua * L) { + luaopen_opengl(L); + L->pop(); +} + +} |