using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public interface IRoomCreationHandler { public RoomInformation InstantiateRoom(Vector2 coords); public RoomInformation GetRoomInfo(); }