view gui/__init__.py @ 27:59a4337f328f

Added fifeagent as component to the Character entity and added a method that attaches the behaviour to the layer
author KarstenBock@gmx.net
date Sun, 04 Sep 2011 15:19:47 +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)