! This is a stub file for Inform.  It will, if compiled, create a working
! Inform game (albeit not a very interesting one.)  The idea is for people
! to start with this, replace the [insert X here] text with their own text,
! then add objects, routines and grammar lines where the comments indicate.
!
!                                                Love n' kisses,
!                                                             Adam.

Constant Story "[insert story title here]";
Constant Headline "^[insert headline here]^";

Include "Parser";
Include "VerbLib";

Object Startroom "[insert room name here]"
  with description
     "[insert room description here]",
  has light;

! Insert more objects here

[ Initialise;
 location = Startroom;
 "^^^[insert introductory text here]^";
];

! Insert more routines here

Include "Grammar";

! Insert new grammar lines here