comparison API/Objects/Mock/MockPercentageAmountUnitEquipmentItem.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
children 74346d5c17fe
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 MockPercentageAmountUnitEquipmentItem : UnitEquipmentItem
10 {
11
12 public MockPercentageAmountUnitEquipmentItem () : base(new MockEquipmentItem(), new MockUnitType())
13 {
14 MaxPercentage = 50;
15 }
16 }
17 }