Skip to content

Instantly share code, notes, and snippets.

@biomood
Created March 18, 2012 17:33
Show Gist options
  • Save biomood/2078225 to your computer and use it in GitHub Desktop.
Save biomood/2078225 to your computer and use it in GitHub Desktop.
int luaopen_screen(lua_State *L) {
luaL_newmetatable(L, SCREENMETA);
luaL_register(L, "screen", screenLib);
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment