Ejemplo n.º 1
0
		public void SetSectorGraphics(ISectorGraphics graphics)
		{
			if (this.sectorGraphics != null)
				this.sectorGraphics.SetSector(null);
			
			this.sectorGraphics = graphics;
			
			if (this.sectorGraphics != null)
				this.sectorGraphics.SetSector(this);
		}
Ejemplo n.º 2
0
        public void SetSectorGraphics(ISectorGraphics graphics)
        {
            if (this.sectorGraphics != null)
            {
                this.sectorGraphics.SetSector(null);
            }

            this.sectorGraphics = graphics;

            if (this.sectorGraphics != null)
            {
                this.sectorGraphics.SetSector(this);
            }
        }
Ejemplo n.º 3
0
 public void Clear()
 {
     world          = null;
     sectorGraphics = null;
 }
Ejemplo n.º 4
0
 public void Clear()
 {
     world = null;
     sectorGraphics = null;
 }