view API/Objects/WarFoundryLoadedObject.cs @ 473:0d032c04210e

Re #359: Add "only contained" attribute to unit types * Make sure remove handles sub-units as well Note: warning the user that the unit has sub-units rather than just removing them is left to the UI
author IBBoard <dev@ibboard.co.uk>
date Mon, 16 Apr 2012 20:47:14 +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
		}	
	}
}