comparison gamelib/scenes/cryo.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 0bad554d0926
children 3b4a78422201
comparison
equal deleted inserted replaced
251:602fe654bd37 252:dfc89bc64fdb
277 277
278 278
279 class CryoRoomDoor(Door): 279 class CryoRoomDoor(Door):
280 "Door to the cryo room." 280 "Door to the cryo room."
281 281
282 NAME = "cryo.door" 282 SCENE = "cryo"
283 283
284 INTERACTS = { 284 INTERACTS = {
285 "shut": InteractNoImage(290, 260, 99, 152), 285 "shut": InteractNoImage(290, 260, 99, 152),
286 "ajar": InteractImage(290, 260, "door_ajar.png"), 286 "ajar": InteractImage(290, 260, "door_ajar.png"),
287 "open": InteractImage(290, 260, "door_open.png"), 287 "open": InteractImage(290, 260, "door_open.png"),