Files
NGECore2/scripts/radial/resourceContainer.py
T
CharonInferar 531acac7c6 More quality assurance work
- Resource container split/join
- Surveying test runs
- Balancing
2014-04-02 23:28:08 +02:00

15 lines
446 B
Python

from resources.common import RadialOptions
import sys
def createRadial(core, owner, target, radials):
#radials.add(RadialOptions(0, 21, 1, ''))
#radials.add(RadialOptions(0, 7, 1, ''))
radials.add(RadialOptions(0, 15, 1, ''))
return
def handleSelection(core, owner, target, option):
#if option == 21 and target:
#core.objectService.useObject(owner, target)
if option == 15 and target:
core.objectService.destroyObject(target)
return