Mercurial > parpg-source
view gui/__init__.py @ 163:9c82ed72dc9d
Added "None" to the action dict which calls an "no-op" action.
author | KarstenBock@gmx.net |
---|---|
date | Sat, 19 Nov 2011 16:12:56 +0100 |
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)