PuzzleGame/PuzzleGameProject/Assets/Scripts/GameManager.cs

19 lines
390 B
C#

using UnityEngine;
public class GameManager : MonoBehaviour
{
public TurnManager turnManager;
public RoomManager roomManager;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
roomManager.InnitializeRooms();
}
// Update is called once per frame
void Update()
{
}
}