Skip to content

Commit

Permalink
Code cleanup and formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgraham committed Jul 14, 2024
1 parent e8d6b98 commit 12926b1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Assets/Scripts/Board.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ public class Board : MonoBehaviour
public Vector2Int boardSize = new Vector2Int(10, 20);
public Vector3Int spawnPosition = new Vector3Int(-1, 8, 0);

public RectInt Bounds {
public RectInt Bounds
{
get
{
Vector2Int position = new Vector2Int(-boardSize.x / 2, -boardSize.y / 2);
Expand Down

0 comments on commit 12926b1

Please sign in to comment.