Files
SimUL/Assets/Scripts/GameController.cs
T
Vladimir Koshevarov c8047bd170 Fix shop System
add food indicator
2022-11-17 17:24:00 +02:00

21 lines
301 B
C#

using UnityEngine;
public class GameController : MonoBehaviour
{
public Map GameMap;
public PlayerManager Player;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}