PuzzleGame/PuzzleGameProject/Assets/Scripts/TurnManager.cs

24 lines
400 B
C#

using UnityEngine;
public class TurnManager : MonoBehaviour
{
public RoomManager roomManager;
private int _turn = 0;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
private void takeTurn()
{
}
}