﻿namespace Oni.Akira
{
    internal class RoomAdjacency
    {
        private readonly Room adjacentRoom;
        private readonly Polygon ghost;

        public RoomAdjacency(Room room, Polygon ghost)
        {
            this.adjacentRoom = room;
            this.ghost = ghost;
        }

        public Room AdjacentRoom => adjacentRoom;

        public Polygon Ghost => ghost;
    }
}
