hank
2016-12-13 6e1425f9ce40a8d178a0218e24bc37c7b01477bb
commit | author | age
6e1425 1 //
H 2 //  wax_class.h
3 //  Lua
4 //
5 //  Created by ProbablyInteractive on 5/20/09.
6 //  Copyright 2009 Probably Interactive. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 #import <objc/runtime.h>
11 #import <objc/message.h>
12
13 //#import "lua.h"
14 #import <lua/lua.h>
15
16 #define WAX_CLASS_METATABLE_NAME "wax.class"
17 #define WAX_CLASS_INSTANCE_USERDATA_IVAR_NAME "wax_instance_userdata"
18
19 int luaopen_wax_class(lua_State *L);