Revision 583,
1.1 KB
checked in by beliar, 9 years ago
(diff) |
Patch by Beliar.
- Made the shebang the same in all files
- Added ContainerGuiBase?, a base class for guis that show container contents
- Moved ContainerGui? from scripts.gui.popups to a new file
- ContainerGui? and InventoryGui? now have ContainerGuiBase? as base class
- If an item is taken out of an inventory the item will now be deleted from item_lookup instead of being set to None. That fixes an bug where items taken out of the inventory could not be moved back in.
|
Line | |
---|
1 | #!/usr/bin/env python # pylint: disable-msg=C0111 |
---|
2 | |
---|
3 | # This file is part of PARPG. |
---|
4 | |
---|
5 | # PARPG is free software: you can redistribute it and/or modify |
---|
6 | # it under the terms of the GNU General Public License as published by |
---|
7 | # the Free Software Foundation, either version 3 of the License, or |
---|
8 | # (at your option) any later version. |
---|
9 | |
---|
10 | # PARPG is distributed in the hope that it will be useful, |
---|
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
13 | # GNU General Public License for more details. |
---|
14 | |
---|
15 | # You should have received a copy of the GNU General Public License |
---|
16 | # along with PARPG. If not, see <http://www.gnu.org/licenses/>. |
---|
17 | |
---|
18 | class ViewBase(object): |
---|
19 | """Base class for views""" |
---|
20 | def __init__(self, engine, model): |
---|
21 | """Constructor for engine |
---|
22 | @param engine: A fife.Engine instance |
---|
23 | @type engine: fife.Engine |
---|
24 | @param model: a script.GameModel instance |
---|
25 | @type model: script.GameModel |
---|
26 | """ |
---|
27 | self.engine = engine |
---|
28 | self.model = model |
---|
Note: See
TracBrowser
for help on using the repository browser.