view 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
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 MockNumericAmountUnitEquipmentItem : UnitEquipmentItem
	{

		public MockNumericAmountUnitEquipmentItem () : base(new MockEquipmentItem(), new MockUnitType())
		{
			MaxPercentage = 100; //TODO: This seems odd - maybe IsRatio should be "!=0"
			MaxNumber = WarFoundryCore.INFINITY;
		}
	}
}