view api/Objects/DuplicateItemException.cs @ 11:5a1df00b0359

Re #9 - Make WarFoundry API load files in small methods * Add "add unit type" and "add equipment" methods to Race * Deprecate old "set unit types" and "set equipment" methods on Race * Update WarFoundryXmlFactory to use new methods * Create DuplicateItemException for later use
author IBBoard <dev@ibboard.co.uk>
date Sun, 18 Jan 2009 16:24:03 +0000
parents
children 306558904c2a
line wrap: on
line source

// This file (DuplicateItemException.cs) is a part of [PROJECT NAME] and is copyright 2009 IBBoard.
//
// The file and the library/program it is in are licensed under the GNU LGPL license. Please see COPYING.LGPL for more information and the full license.

using System;

namespace IBBoard.WarFoundry
{
	public class DuplicateItemException
	{
		public DuplicateItemException()
		{
		}
	}
}