Mercurial > repos > IBBoard.ArmyBuilder.API
view ABv2File.cs @ 4:d2f7826147eb
Re #75 - Extract Army Builder files
* Fix code compilation issues (still can't extract)
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 19 May 2009 10:22:30 +0000 |
parents | 1a54f6afafe7 |
children | ec77b60e5369 |
line wrap: on
line source
// 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) { } } }