diff -r 5b0aeef8ba2a -r 5608ac657362 project_files/frontlib/model/gamesetup.h --- a/project_files/frontlib/model/gamesetup.h Thu Jun 21 21:32:12 2012 +0200 +++ b/project_files/frontlib/model/gamesetup.h Mon Jun 25 00:42:07 2012 +0200 @@ -1,8 +1,6 @@ /** * A complete game configuration that contains all settings for a * local or networked game. - * - * It should be noted that the meta-configuration is not included. */ #ifndef MODEL_GAMESETUP_H_ @@ -14,12 +12,11 @@ #include "team.h" typedef struct { - char *seed; // required - char *script; // optional - flib_cfg *gamescheme; // optional - flib_map *map; // optional - flib_team **teams; // optional - int teamcount; + char *script; + flib_cfg *gamescheme; + flib_map *map; + int teamCount; + flib_team **teams; } flib_gamesetup; #endif