Mercurial > parpg-source
comparison charactercreationcontroller.py @ 189:4381be70e1bb tip
Fixed incompatibility with latest changes to bgrease.
author | Beliar <KarstenBock@gmx.net> |
---|---|
date | Sun, 08 Apr 2012 20:30:43 +0200 |
parents | 2a12e2843984 |
children |
comparison
equal
deleted
inserted
replaced
188:2a12e2843984 | 189:4381be70e1bb |
---|---|
75 @param application: Application used to glue the various MVC | 75 @param application: Application used to glue the various MVC |
76 components together. | 76 components together. |
77 @type application: | 77 @type application: |
78 L{fife.extensions.basicapplication.ApplicationBase}""" | 78 L{fife.extensions.basicapplication.ApplicationBase}""" |
79 ControllerBase.__init__(self, engine, view, model, application) | 79 ControllerBase.__init__(self, engine, view, model, application) |
80 PARPGWorld.__init__(self) | 80 PARPGWorld.__init__(self, engine) |
81 self.settings = self.model.settings | 81 self.settings = self.model.settings |
82 self.view.start_new_game_callback = self.startNewGame | 82 self.view.start_new_game_callback = self.startNewGame |
83 self.view.cancel_new_game_callback = self.cancelNewGame | 83 self.view.cancel_new_game_callback = self.cancelNewGame |
84 | 84 |
85 def reset_character(self): | 85 def reset_character(self): |