示例#1
0
文件: Game.cs 项目: sylafrs/GGJ2016
	public void RemoveZone(Zone z)
	{
		if (Zones.Contains(z))
		{
			Zones.Remove(z);
			if(z.Owner)
				z.Owner.OnZoneLost(z);
			z.CleanUp();
			GameObject.Destroy(z.gameObject);
		}
	}