mirror of
https://github.com/DerTyp7/grow-ai-unity.git
synced 2025-10-29 20:42:08 +01:00
18 lines
318 B
C#
18 lines
318 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class GridInfo : MonoBehaviour
|
|
{
|
|
public static GridInfo instance;
|
|
|
|
public int gridWidth = 20;
|
|
public int gridHeight = 20;
|
|
public float cellSize = 1f;
|
|
|
|
private void Awake()
|
|
{
|
|
instance = this;
|
|
}
|
|
}
|