diff options
author | Max Kellermann <max@duempel.org> | 2013-04-17 22:58:33 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-04-17 23:52:58 +0200 |
commit | b2d3d15e978aef2566a1bdae435d71cb326dec4d (patch) | |
tree | 769550ce5e624915b9d3129793624583474604ba /src/Main.hxx | |
parent | 08dfd263ba496b0c1f6ddbe9b3eefa9a5cea57a4 (diff) |
Main: move global variables to struct Instance
More preparations for multi-player support.
Diffstat (limited to 'src/Main.hxx')
-rw-r--r-- | src/Main.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Main.hxx b/src/Main.hxx index b2768600c..e403d5669 100644 --- a/src/Main.hxx +++ b/src/Main.hxx @@ -23,14 +23,13 @@ #include <glib.h> class EventLoop; +struct Instance; extern GThread *main_task; extern EventLoop *main_loop; -extern class ClientList *client_list; - -extern struct Partition *global_partition; +extern Instance *instance; /** * A entry point for application. |