comparison gamelib/scenes/crew_quarters.py @ 241:b1451b0b906f

Link crew quarters to map.
author Simon Cross <hodgestar+bzr@gmail.com>
date Fri, 27 Aug 2010 10:37:47 +0200
parents 7399b52f196f
children 12c4f87ea424
comparison
equal deleted inserted replaced
240:06f3f1be9e2d 241:b1451b0b906f
72 72
73 73
74 class SafeDetail(Scene): 74 class SafeDetail(Scene):
75 75
76 FOLDER = 'crew_quarters' 76 FOLDER = 'crew_quarters'
77 BACKGROUND = 'triangle.png' 77 BACKGROUND = None # TODO
78 NAME = 'safe_detail' 78 NAME = 'safe_detail'
79 79
80 SIZE = (300, 300) 80 SIZE = (300, 300)
81 81
82 def __init__(self, state): 82 def __init__(self, state):
83 super(SafeDetail, self).__init__(state) 83 super(SafeDetail, self).__init__(state)
84 84
85 85
86 SCENES = [Bridge] 86 SCENES = [CrewQuarters]
87 DETAIL_VIEWS = [ChairDetail] 87 DETAIL_VIEWS = [SafeDetail]