Mercurial > repos > IBDev-IBBoard.WarFoundry.API.Tests
view API/Objects/Mock/MockContainedUnitType.cs @ 225:c6313a2c08a2
Re #359: Add "only contained" attribute to unit types
* Add missing class
* Add tests for loading files and test data
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 14 Apr 2012 19:57:32 +0100 |
parents | |
children |
line wrap: on
line source
// This file (MockContainedUnitType.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2012 IBBoard // // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license. using System; namespace IBBoard.WarFoundry.API.Objects.Mock { public class MockContainedUnitType : MockUnitType { public MockContainedUnitType() : this("mockcontainedunittype", "Mock Contained Unit Type") { //Do nothing special } public MockContainedUnitType(string id, string name) : base(id, name) { IsContainedOnly = true; } } }