aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-02-23 03:02:00 +1000
committerDavid Walter Seikel2012-02-23 03:02:00 +1000
commit3ce55cc1d5e3269af2102935cba67265cc068336 (patch)
tree8ad1953ff6b166c023a21d4da676ad09c8d08497 /LuaSL/src/LuaSL.h
parentImplement llSleep(), and wait a bit longer for the test, now that it's sleepi... (diff)
downloadSledjHamr-3ce55cc1d5e3269af2102935cba67265cc068336.zip
SledjHamr-3ce55cc1d5e3269af2102935cba67265cc068336.tar.gz
SledjHamr-3ce55cc1d5e3269af2102935cba67265cc068336.tar.bz2
SledjHamr-3ce55cc1d5e3269af2102935cba67265cc068336.tar.xz
Implement llSetTimerEvent(), though it wont work so well until the events system is in place at the Lua end.
Diffstat (limited to 'LuaSL/src/LuaSL.h')
-rw-r--r--LuaSL/src/LuaSL.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/LuaSL/src/LuaSL.h b/LuaSL/src/LuaSL.h
index 6d495fa..ae0c26f 100644
--- a/LuaSL/src/LuaSL.h
+++ b/LuaSL/src/LuaSL.h
@@ -66,11 +66,12 @@ typedef struct
66 char SID[PATH_MAX]; 66 char SID[PATH_MAX];
67 char fileName[PATH_MAX]; 67 char fileName[PATH_MAX];
68 struct timeval startTime; 68 struct timeval startTime;
69 float compileTime; 69 float compileTime, timerTime;
70 int bugs, warnings; 70 int bugs, warnings;
71 boolean running; 71 boolean running;
72 gameGlobals *game; 72 gameGlobals *game;
73 Ecore_Con_Client *client; 73 Ecore_Con_Client *client;
74 Ecore_Timer *timer;
74} script; 75} script;
75 76
76typedef struct 77typedef struct