Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
stevedekorte committed Oct 27, 2012
1 parent aed36dc commit d30ac32
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Expand Up @@ -2,13 +2,15 @@
lua_ios lua_ios
====== ======


lua_ios is C library which includes LuaJIT and lua bindings for: lua_ios is a lightweight MIT licensed lua game engine alternative to frameworks like Corona or Moai. It includes LuaJIT and bindings for:


OpenGLES OpenGLES
luasocket luasocket
OpenAL OpenAL


Example use: USAGE

To use, just include the lua_ios folder in your Xcode project, add your own main.lua resource file and call the following in your GLESView:


lua_State luaState = lua_open(); lua_State luaState = lua_open();
luaopen_lua_ios(luaState); luaopen_lua_ios(luaState);
Expand All @@ -17,4 +19,8 @@ Example use:
pathForResource:@"main" ofType:@"lua"]; pathForResource:@"main" ofType:@"lua"];


luaL_loadfile(_luaState, [filePath UTF8String]); luaL_loadfile(_luaState, [filePath UTF8String]);

AUTHORS

Steve Dekorte and Rich Collins


0 comments on commit d30ac32

Please sign in to comment.