예제 #1
0
파일: Player.cs 프로젝트: Roger-luo/OpenRA
		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));
 }