Exemplo n.º 1
0
 public override void ParseXml(XmlParser xp, string path)
 {
     base.ParseXml(xp, path);
     string rootnode = path + "->" + Name + "->";
     Debug = xp.GetBool(rootnode + "Debug", false);
     DebugColor = xp.GetColor(rootnode + "DebugColor", Color.PowderBlue);
     Bounds = xp.GetRectangle(rootnode + "Bounds", new Rectangle());
 }