Example #1
0
        public Formation GetFormation(string id)
        {
            if (!Formations.ContainsKey(id))
            {
                throw new GameDataException("Could not find formation with id " + id);
            }

            return(Formations[id]);
        }