Exemple #1
0
 /// <summary>
 /// Gets the X and Y coordinates of the top left point of the Farmhouse in Vector2
 /// Form. Allows offsetting the coordinates.
 /// </summary>
 /// <param name="OffsetX">The Offset value for the X Coordinate</param>
 /// <param name="OffsetY">The Offset value for the Y Coordinate</param>
 /// <returns>The coordinates in Vector2 form.</returns>
 public Vector2 FarmHouseCoords(float OffsetX = 0, float OffsetY = 0)
 {
     return(HouseManager.FarmHouseCoords(OffsetX, OffsetY, Canon));
 }