view API/Objects/WarFoundryLoadedObject.cs @ 440:baa34d91031f

Re #350: Add requirement to allow N of unit for specific other units * Correct "adding" validation message - we haven't added when we check if adding is okay
author IBBoard <dev@ibboard.co.uk>
date Sat, 03 Dec 2011 16:14:26 +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
		}	
	}
}