Created some starting rooms and started working on the room, gamemanager, turnmanager, roommanager classes.

This commit is contained in:
Max 2025-01-17 16:57:56 +01:00
parent 9d0ada54e0
commit cb7aff20dd
101 changed files with 63867 additions and 0 deletions

View file

@ -0,0 +1,19 @@
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()
{
}
}