示例#1
0
		public bool CanViewActor(Actor a)
		{
			return a.CanBeViewedByPlayer(this);
		}
示例#2
0
 public bool CanViewActor(Actor a)
 {
     return(a.CanBeViewedByPlayer(this));
 }
示例#3
0
文件: World.cs 项目: gardolf/OpenRA
 public bool FogObscures(Actor a)
 {
     return(RenderPlayer != null && !a.CanBeViewedByPlayer(RenderPlayer));
 }