view API/Objects/WarFoundryLoadedObject.cs @ 437:0922851f6125

Re #350: Add requirement to allow N of unit for specific other units * Extend unit count requirement data to handle fixed numbers of units allowed per unit required * Add initial stub of requirement using some copy-and-paste, but starting to avoid ticket:379
author IBBoard <dev@ibboard.co.uk>
date Tue, 29 Nov 2011 20:55:21 +0000
parents 3c4a6403a88c
children
line wrap: on
line source

using System;
using IBBoard.WarFoundry.API.Objects;

namespace IBBoard.WarFoundry.API.Objects
{
	/// <summary>
	/// A marker class for objects that are loaded from a file
	/// </summary>
	public class WarFoundryLoadedObject : WarFoundryObject
	{
		protected WarFoundryLoadedObject() : base()
		{
			//Do nothing
		}
				
		protected WarFoundryLoadedObject(string objName) : base(objName)
		{
			//Do nothing
		}
		
		protected WarFoundryLoadedObject(string objId, string objName) : base(objId, objName)
		{
			//Do nothing
		}	
	}
}