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