0
|
1 using System;
|
|
2 using System.Text.RegularExpressions;
|
|
3 using System.Xml;
|
|
4 using IBBoard;
|
|
5
|
|
6 namespace IBBoard.WarFoundry.API.Objects
|
|
7 {
|
|
8 /// <summary>
|
|
9 /// Summary description for StatSlot.
|
|
10 /// </summary>
|
|
11 public class StatSlot
|
|
12 {
|
|
13 private string name;
|
|
14 private SystemStats sysStats;
|
|
15
|
|
16 public StatSlot(String statName)
|
|
17 {
|
|
18 name = statName;
|
|
19 }
|
|
20
|
|
21 public string Name
|
|
22 {
|
|
23 get { return name; }
|
|
24 set { value = name; }
|
|
25 }
|
|
26
|
|
27 public SystemStats SystemStats
|
|
28 {
|
|
29 get { return sysStats; }
|
|
30 set { sysStats = value; }
|
|
31 }
|
|
32 }
|
|
33 }
|