view 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
line wrap: on
line source

// This file (MockUnitEquipmentItem.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2009 IBBoard
// 
// 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.

using System;

namespace IBBoard.WarFoundry.API.Objects.Mock
{
	public class MockPercentageAmountUnitEquipmentItem : UnitEquipmentItem
	{

		public MockPercentageAmountUnitEquipmentItem () : base(new MockEquipmentItem(), new MockUnitType())
		{
			MaxPercentage = 50;
		}
	}
}