Ejemplo n.º 1
0
 /// <summary>TODO</summary>
 public static Task <IFov> GetFieldOfViewAsync(this IFovBoard <IHex> @this, HexCoords origin, FovTargetMode targetMode)
 {
     return(Task.Run <IFov>(
                () => @this.GetFieldOfView(origin, targetMode)
                ));
 }
Ejemplo n.º 2
0
 public static IFov GetFov(this IFovBoard <IHex> @this, HexCoords origin)
 {
     return(@this.GetFieldOfView(origin));
 }