Mercurial > repos > IBBoard.ArmyBuilder.API
diff ABv2File.cs @ 3:1a54f6afafe7
Re #84 and #85: Support Army Builder v2/v3 files
* Separate out the two versions of file
* Restructure file loader to load v2 files correctly
* Tidy up file extractor (still not working)
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 17 May 2009 18:40:36 +0000 |
parents | |
children | ec77b60e5369 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ABv2File.cs Sun May 17 18:40:36 2009 +0000 @@ -0,0 +1,21 @@ +// This file (ABv2File.cs) is a part of the IBBoard.ArmyBuilder.API project and is copyright 2009 IBBoard +// +// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license. +// + +using System; +using System.IO; + +namespace IBBoard.ArmyBuilder.API +{ + public class ABv2File : ABFile + { + public ABv2File(String filePath) : base(new FileInfo(filePath)) + { + } + + public ABv2File(FileInfo file) : base(file) + { + } + } +}