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