From 12926b12bf6a645dcfd02b4ce4383024fead1d46 Mon Sep 17 00:00:00 2001 From: Adam Graham Date: Sat, 13 Jul 2024 21:11:12 -0500 Subject: [PATCH] Code cleanup and formatting changes --- Assets/Scripts/Board.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/Scripts/Board.cs b/Assets/Scripts/Board.cs index ffcbb42..ac5def9 100644 --- a/Assets/Scripts/Board.cs +++ b/Assets/Scripts/Board.cs @@ -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);