Mercurial > parpg-source
view gui/__init__.py @ 53:7b9f6e3513d4
Added code that checks if the object is the player so certain actions (talk, attack) will not appear in the menu.
author | KarstenBock@gmx.net |
---|---|
date | Thu, 08 Sep 2011 18:36:40 +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)