Mercurial > repos > IBDev-IBBoard.WarFoundry.API.Tests
comparison API/Objects/Mock/MockNumericAmountUnitEquipmentItem.cs @ 15:1119b6f48e8e
Re #198: Add slots with counts to units
* Add extra tests to equipment adding
* Separate out mock percentage and numeric equipment items
* Add MockUnit so that we don't have to initialise translations (overrides DefaultName() method)
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 24 Oct 2009 13:26:37 +0000 |
parents | API/Objects/Mock/MockUnitEquipmentItem.cs@19fc7a733064 |
children | 9b23e72ba3cf |
comparison
equal
deleted
inserted
replaced
14:19fc7a733064 | 15:1119b6f48e8e |
---|---|
1 // This file (MockUnitEquipmentItem.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2009 IBBoard | |
2 // | |
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. | |
4 | |
5 using System; | |
6 | |
7 namespace IBBoard.WarFoundry.API.Objects.Mock | |
8 { | |
9 public class MockNumericAmountUnitEquipmentItem : UnitEquipmentItem | |
10 { | |
11 | |
12 public MockNumericAmountUnitEquipmentItem () : base(new MockEquipmentItem(), new MockUnitType()) | |
13 { | |
14 MaxPercentage = 100; //TODO: This seems odd - maybe IsRatio should be "!=0" | |
15 MaxNumber = WarFoundryCore.INFINITY; | |
16 } | |
17 } | |
18 } |