Exemplo n.º 1
0
 public void SetData(ZoneData data)
 {
     this._data = data;
     if (this._data.Parent != null)
     {
         this._data.Parent.AddZone(this);
     }
     if (this._data.Source != null)
     {
         this._data.Source.Proxy.AddZone(this);
     }
 }
Exemplo n.º 2
0
 public AZone(EZone type)
 {
     this._data = new ZoneData();
     this._type = type;
 }