From dbf4b2b338273b037d28234ed9bc025af8bb565e Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Fri, 16 May 2014 18:56:44 +1000 Subject: Stick the connection to the love server in the GuiLua structure, and related tweakage. --- src/GuiLua/GuiLua.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/GuiLua/GuiLua.h') diff --git a/src/GuiLua/GuiLua.h b/src/GuiLua/GuiLua.h index 9ee5a1f..cf94e1f 100644 --- a/src/GuiLua/GuiLua.h +++ b/src/GuiLua/GuiLua.h @@ -22,6 +22,7 @@ typedef struct _GuiLua winFang *us; // Our window, if it exists. winFang *parent; // Our parent window, if it exists. EPhysics_World *world; // Our world, if it exists. + Ecore_Con_Server *server; int inDel; Eina_Clist node; @@ -32,7 +33,7 @@ typedef struct _GuiLua extern const char *glName; GuiLua *GuiLuaDo(int argc, char **argv, winFang *parent, EPhysics_World *world); -GuiLua *GuiLuaLoad(char *module, winFang *parent, EPhysics_World *world); +GuiLua *GuiLuaLoad(char *module, winFang *parent, Ecore_Con_Server *server, EPhysics_World *world); void GuiLuaDel(GuiLua *gl); #endif -- cgit v1.1