view API/Objects/WarFoundryLoadedObject.cs @ 468:95c1b68a600b

Re #359: Add "only contained" attribute to unit types * Exclude "contained only" units from Race's list of available units
author IBBoard <dev@ibboard.co.uk>
date Sat, 14 Apr 2012 16:57:34 +0100
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
		}	
	}
}