added user structure for upcoming multiple user support
authorHolger Schemel <info@artsoft.org>
Sat, 17 Oct 2020 23:25:04 +0000 (01:25 +0200)
committerHolger Schemel <info@artsoft.org>
Sun, 13 Dec 2020 23:57:56 +0000 (00:57 +0100)
src/libgame/system.c
src/libgame/system.h

index 156e8a1ba493e4cf326798b56cae5a6acacca98e..a7a12792b3668d0bfd41397679835774d89be2b6 100644 (file)
@@ -40,6 +40,7 @@ struct OverlayInfo    overlay;
 struct ArtworkInfo     artwork;
 struct JoystickInfo    joystick;
 struct SetupInfo       setup;
+struct UserInfo                user;
 
 LevelDirTree          *leveldir_first_all = NULL;
 LevelDirTree          *leveldir_first = NULL;
index ab7faa22ba5258aa2d988c26513d79098c0bba4a..3962dbdba4107a6e5fae8890a49d73cb832dee3a 100644 (file)
@@ -1459,6 +1459,11 @@ struct SetupInfo
   struct OptionInfo options;
 };
 
+struct UserInfo
+{
+  int nr;
+};
+
 struct TreeInfo
 {
   struct TreeInfo **node_top;          // topmost node in tree
@@ -1779,6 +1784,7 @@ extern struct AnimInfo            anim;
 extern struct ArtworkInfo      artwork;
 extern struct JoystickInfo     joystick;
 extern struct SetupInfo                setup;
+extern struct UserInfo         user;
 
 extern LevelDirTree           *leveldir_first_all;
 extern LevelDirTree           *leveldir_first;