Labels:text | screenshot | font | black and white OCR: * Amiga MUD * Copyright (c) 1994 by Chris Gray */ /× * simple.m - a very simple text-only adventure. Mostly just a tutorial. */ /* First, define the basic "properties" that we will use in this world */ /* Properties on rooms: * / public north CreateThingProp(). /* the room to the north (if any) */ -- public south CreateThingProp(), public east CreateThingProp(). /* the room to the south (if any) * public west CreateThingProp(), /* the room to the east (if any) */ public desc CreateStringProp(), /* the room to the west (if any) */ /* the description of the room */ public contents CreateThingListProp(), /* the list of stuff in the room */ /* Properties on players: * / public carrying CreateThingListProp()./* the list of stuff being carried */ /* Properties on objects: * / public name CreateS ...