Mercurial > repos > IBDev-IBBoard.WarFoundry.API
annotate api/Factories/Xml/WarFoundryXmlArmyFactory.cs @ 194:1412a42190a1
* Fix mutex group clash checking
no-open-ticket
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Fri, 30 Oct 2009 20:23:03 +0000 |
parents | 2010a7e8bf9a |
children |
rev | line source |
---|---|
52 | 1 // This file (WarFoundryXmlArmyFactory.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2009 IBBoard |
2 // | |
104
2f3cafb69799
Re #121: Migrate to AGPL license
IBBoard <dev@ibboard.co.uk>
parents:
52
diff
changeset
|
3 // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license. |
52 | 4 |
5 using System; | |
6 using System.Xml; | |
7 using IBBoard.Xml; | |
8 using ICSharpCode.SharpZipLib.Zip; | |
9 using IBBoard.WarFoundry.API.Objects; | |
10 | |
11 namespace IBBoard.WarFoundry.API.Factories.Xml | |
12 { | |
13 /// <summary> | |
14 /// A sub-factory for loading WarFoundry Army XML files | |
15 /// </summary> | |
16 public class WarFoundryXmlArmyFactory | |
17 { | |
18 public Army CreateArmyFromElement(ZipFile file, XmlElement elem) | |
19 { | |
116
2010a7e8bf9a
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
113
diff
changeset
|
20 return new WarFoundryXmlArmyParser(file, elem).GetArmy(); |
52 | 21 } |
22 } | |
23 } |