view src/parpg/gui/__init__.py @ 156:04de7f38429a

The stopActions method in the Hud class now drops the item that is currently dragged onto the map.
author KarstenBock@gmx.net
date Fri, 07 Oct 2011 14:16:21 +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)