blob: dba655043e8620188435e4358277d4ef3ad54ebf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifdef HAVE_CONFIG_H
#include "config.h"
#else
#define __UNUSED__
#endif
#include <Eet.h>
#include <Ecore_File.h>
typedef struct _gameGlobals gameGlobals; // Define this here, so LuaSL_threads.h can use it.
#include "LumbrJack.h"
#include "Runnr.h"
#include "SledjHamr.h"
struct _gameGlobals
{
Ecore_Con_Server *server;
Eina_Hash *names;
const char *address;
int port;
};
#include "LuaSL_LSL_tree.h"
|