aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/GuiLua/GuiLua.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/GuiLua/GuiLua.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/GuiLua/GuiLua.h b/src/GuiLua/GuiLua.h
index b123fe7..3bd2baf 100644
--- a/src/GuiLua/GuiLua.h
+++ b/src/GuiLua/GuiLua.h
@@ -20,6 +20,7 @@ typedef struct _GuiLua
20 lua_State *L; 20 lua_State *L;
21 winFang *us; // Our window, if it exists. 21 winFang *us; // Our window, if it exists.
22 winFang *parent; // Our parent window, if it exists. 22 winFang *parent; // Our parent window, if it exists.
23 EPhysics_World *world; // Our world, if it exists.
23 int inDel; 24 int inDel;
24 25
25 Eina_Clist node; 26 Eina_Clist node;
@@ -29,8 +30,8 @@ typedef struct _GuiLua
29 30
30extern const char *glName; 31extern const char *glName;
31 32
32GuiLua *GuiLuaDo(int argc, char **argv, winFang *parent); 33GuiLua *GuiLuaDo(int argc, char **argv, winFang *parent, EPhysics_World *world);
33void GuiLuaLoad(char *module, winFang *parent); 34void GuiLuaLoad(char *module, winFang *parent, EPhysics_World *world);
34void GuiLuaDel(GuiLua *gl); 35void GuiLuaDel(GuiLua *gl);
35 36
36#endif 37#endif