comparison api/Objects/Stats.cs @ 10:607c3232d689

Re #11 - Documentation * Document Stats and SystemStats at class level to explain the difference * Document WarFoundryXmlFactory at class level Re #13 - XPath for XML loading * Load categories using XPath - needs fixing so we can do a proper "categories/cat" query Re #10 - Refactoring for readability * Fix method signature for getting number from attribute added in r19 * Refactor more code in to GetExtraData method * Separate out loading of categories for GameSystem
author IBBoard <dev@ibboard.co.uk>
date Sun, 04 Jan 2009 20:43:36 +0000
parents 520818033bb6
children 306558904c2a
comparison
equal deleted inserted replaced
9:6ad505b6c36e 10:607c3232d689
22 using System.Collections.Generic; 22 using System.Collections.Generic;
23 using IBBoard.Lang; 23 using IBBoard.Lang;
24 24
25 namespace IBBoard.WarFoundry.API.Objects 25 namespace IBBoard.WarFoundry.API.Objects
26 { 26 {
27 /// <summary>
28 /// Stats defines the statistic/attribute values for an entity (for example a unit or any of their equipment that has a stat line) paired against a <see cref=" SystemStats"/> stat line definition.
29 /// </summary>
27 public class Stats 30 public class Stats
28 { 31 {
29 private Stat[] stats; 32 private Stat[] stats;
30 private List<string> statOrder; 33 private List<string> statOrder;
31 private SystemStats sysStats; 34 private SystemStats sysStats;