view api/Objects/UnitRequiresAtLeastNUnitsRequirement.cs @ 326:331995582990

Re #27: Define unit requirements * First skeleton of first new style requirement
author IBBoard <dev@ibboard.co.uk>
date Sat, 26 Mar 2011 17:03:00 +0000
parents
children 1c32b8a1600e
line wrap: on
line source

// This file (UnitRequiresAtLeastNUnitsRequirement.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2011 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;
using System.Collections.Generic;
using IBBoard.WarFoundry.API.Objects;

namespace IBBoard.WarFoundry.API.Objects
{
	/// <summary>
	/// A requirement where a Unit requires at least N units of one or more unit types before it can be taken.
	/// </summary>
	public class UnitRequiresAtLeastNUnitsRequirement
	{
		private List<UnitType> requiredTypes;

		public UnitRequiresAtLeastNUnitsRequirement(params UnitType[] requiredUnitTypes)
		{
			requiredTypes = new List<UnitType>(requiredUnitTypes);
		}

		public bool CanAddToArmy(Unit unit, Army army)
		{
			return false;
		}
	}
}