view src/parpg/gui/__init__.py @ 15:de378945b839

Fixed 2 (of 3) issues with the scons script for windows * Removed unnecessary START command from parpg.bat.in * Changed PROGRAM_NAME to PROJECT_NAME for the default prefix value in windows
author KarstenBock@gmx.net
date Thu, 09 Jun 2011 15:59:52 +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)