Mercurial > parpg-source
view gui/__init__.py @ 71:8f1edcab5602
Functions in equip.py will now correctly set the equipable's attributes.
author | KarstenBock@gmx.net |
---|---|
date | Wed, 21 Sep 2011 17:39:07 +0200 |
parents | 06145a6ee387 |
children |
line wrap: on
line source
from fife.extensions import pychan from .inventorygui import EquipmentSlot, InventoryGrid from .spinners import Spinner, IntSpinner from .tabwidget import TabWidget pychan.registerWidget(EquipmentSlot) pychan.registerWidget(InventoryGrid) pychan.registerWidget(Spinner) pychan.registerWidget(IntSpinner) pychan.registerWidget(TabWidget)