comparison gamelib/scenes/engine.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 cc478e3a951e
children 5f58da9eeb52
comparison
equal deleted inserted replaced
251:602fe654bd37 252:dfc89bc64fdb
21 return Result("Somewhere in the darkness the engine waits and bides its time.") 21 return Result("Somewhere in the darkness the engine waits and bides its time.")
22 22
23 23
24 class ToMap(Door): 24 class ToMap(Door):
25 25
26 NAME = "engine.tomap" 26 SCENE = "engine"
27 27
28 INTERACTS = { 28 INTERACTS = {
29 "door": InteractText(100, 200, "To Map"), 29 "door": InteractText(100, 200, "To Map"),
30 } 30 }
31 31