Fixed closed list to compare string values

This commit is contained in:
dereelatwit
2023-08-09 13:21:27 -04:00
parent 716995cd92
commit 5297b3f060
2 changed files with 10 additions and 10 deletions
@@ -28,9 +28,9 @@ public class nMain : MonoBehaviour
void Start()
{
// Create world
int width = 16;
int height = 8;
float cellSize = 10f;
int width = 32;
int height = 16;
float cellSize = 5f;
Vector3 origin = new Vector3(-77, -34);
world = new LogicGrid(width, height, cellSize, origin);