comparison 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
comparison
equal deleted inserted replaced
2:d5ba733cd289 3:1a54f6afafe7
1 // This file (ABv2File.cs) is a part of the IBBoard.ArmyBuilder.API project and is copyright 2009 IBBoard
2 //
3 // 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.
4 //
5
6 using System;
7 using System.IO;
8
9 namespace IBBoard.ArmyBuilder.API
10 {
11 public class ABv2File : ABFile
12 {
13 public ABv2File(String filePath) : base(new FileInfo(filePath))
14 {
15 }
16
17 public ABv2File(FileInfo file) : base(file)
18 {
19 }
20 }
21 }