view src/parpg/gui/__init__.py @ 29:ad18c3f912c5

Made sure that the modules in the current directory are imported, and not those in the python path
author KarstenBock@gmx.net
date Tue, 12 Jul 2011 12:30:41 +0200
parents d60f1dab8469
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)