project_files/frontlib/model/gamesetup.h
changeset 7275 15f722e0b96f
parent 7271 5608ac657362
child 7314 6171f0bad318
--- a/project_files/frontlib/model/gamesetup.h	Mon Jun 25 15:21:18 2012 +0200
+++ b/project_files/frontlib/model/gamesetup.h	Wed Jun 27 18:02:45 2012 +0200
@@ -9,14 +9,15 @@
 #include "cfg.h"
 #include "weapon.h"
 #include "map.h"
-#include "team.h"
+#include "teamlist.h"
 
 typedef struct {
     char *script;
     flib_cfg *gamescheme;
     flib_map *map;
-	int teamCount;
-	flib_team **teams;
+	flib_teamlist *teamlist;
 } flib_gamesetup;
 
+void flib_gamesetup_destroy(flib_gamesetup *gamesetup);
+
 #endif