Esempio n. 1
0
		public bool CanViewActor(Actor a)
		{
			return a.CanBeViewedByPlayer(this);
		}
Esempio n. 2
0
 public bool CanViewActor(Actor a)
 {
     return(a.CanBeViewedByPlayer(this));
 }
Esempio n. 3
0
 public bool FogObscures(Actor a)
 {
     return(RenderPlayer != null && !a.CanBeViewedByPlayer(RenderPlayer));
 }