view api/Objects/StatSlot.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 520818033bb6
children 306558904c2a
line wrap: on
line source

using System;
using System.Text.RegularExpressions;
using System.Xml;
using IBBoard;

namespace IBBoard.WarFoundry.API.Objects
{
	/// <summary>
	/// Summary description for StatSlot.
	/// </summary>
	public class StatSlot
	{
		private string name;
		private SystemStats sysStats;

		public StatSlot(String statName)
		{
			name = statName;
		}

		public string Name
		{
			get { return name; }
			set { value = name; }
		}
		
		public SystemStats SystemStats
		{
			get { return sysStats; }
			set { sysStats = value; }
		}
	}
}