comparison gamelib/state.py @ 72:d2250cf40ee7

Fix typo.
author Simon Cross <hodgestar+bzr@gmail.com>
date Mon, 23 Aug 2010 21:08:15 +0200
parents 99c5506de7ea
children 932b0956e77a
comparison
equal deleted inserted replaced
71:99c5506de7ea 72:d2250cf40ee7
66 66
67 def draw(self, surface): 67 def draw(self, surface):
68 self.current_scene.draw(surface) 68 self.current_scene.draw(surface)
69 69
70 def interact(self, item, pos): 70 def interact(self, item, pos):
71 self.current_scene.iteract(item, pos) 71 self.current_scene.interact(item, pos)
72 72
73 def mouse_move(self, item, pos): 73 def mouse_move(self, item, pos):
74 self.current_scene.mouse_move(item, pos) 74 self.current_scene.mouse_move(item, pos)
75 75
76 def get_message(self): 76 def get_message(self):