project_files/frontlib/model/gamesetup.h
author Medo <smaxein@googlemail.com>
Mon, 25 Jun 2012 00:42:07 +0200
changeset 7271 5608ac657362
parent 7224 5143861c83bd
child 7275 15f722e0b96f
permissions -rw-r--r--
frontlib: Intermittent commit. Things are still in flux but we're getting there :)

/**
 * A complete game configuration that contains all settings for a
 * local or networked game.
 */

#ifndef MODEL_GAMESETUP_H_
#define MODEL_GAMESETUP_H_

#include "cfg.h"
#include "weapon.h"
#include "map.h"
#include "team.h"

typedef struct {
    char *script;
    flib_cfg *gamescheme;
    flib_map *map;
	int teamCount;
	flib_team **teams;
} flib_gamesetup;

#endif