/**
 *  Defines a location that holds multiple things.
 */

package mud.core;

import java.lang.*;

public class Room extends mud.core.GameObject
{
    protected GameObject [][] locations;
    protected int entryX;
    protected int entryY;
//    protected entryZ
}