comparison gamelib/scenes/crew_quarters.py @ 252:dfc89bc64fdb

Start of walkthrough "unit test" and associated fixes and tweaks.
author Jeremy Thurgood <firxen@gmail.com>
date Fri, 27 Aug 2010 16:45:47 +0200
parents 12c4f87ea424
children 3b4a78422201
comparison
equal deleted inserted replaced
251:602fe654bd37 252:dfc89bc64fdb
21 return Result("The crew were a messy bunch. Or maybe that's just the intervening centuries.") 21 return Result("The crew were a messy bunch. Or maybe that's just the intervening centuries.")
22 22
23 23
24 class ToMap(Door): 24 class ToMap(Door):
25 25
26 NAME = "crew.tomap" 26 SCENE = "crew"
27 27
28 INTERACTS = { 28 INTERACTS = {
29 "door": InteractText(100, 200, "To Map"), 29 "door": InteractText(100, 200, "To Map"),
30 } 30 }
31 31