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