view gui/__init__.py @ 89:939984cff702

Added Base component, which has a saveable_fields property. It is supposed to be derived from, thus it is not in the components list.
author KarstenBock@gmx.net
date Tue, 27 Sep 2011 14:58:03 +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)