Newer
Older
HardPoint-Project-Abertay-University-Unity3D / Assets / Scripts / Systems / RandomGeneration / IRoomCreationHandler.cs
@Rackday Rackday on 18 Aug 238 bytes Project Added
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public interface IRoomCreationHandler
{
    public RoomInformation InstantiateRoom(Vector2 coords);
    public RoomInformation GetRoomInfo();
}