<asl version="550">
  <include ref="English.aslx" />
  <include ref="Core.aslx" />
  
  <game name="Simple Adventure">
    <gameid>12345678-1234-1234-1234-123456789012</gameid>
    <version>1.0</version>
    <firstpublished>2026</firstpublished>
  </game>
  
  <object name="room">
    <inherit name="editor_room" />
    <description>You are in a small room. There is a door to the north.</description>
    <exit alias="north" to="hallway">
      <inherit name="northdirection" />
    </exit>
  </object>
  
  <object name="hallway">
    <inherit name="editor_room" />
    <description>You are in a hallway.</description>
    <exit alias="south" to="room">
      <inherit name="southdirection" />
    </exit>
  </object>
  
  <object name="player">
    <inherit name="editor_object" />
    <inherit name="editor_player" />
  </object>
</asl>
