SuperScriptMaterializer/SuperScriptDecorator/DecoratorConst.py
2023-02-22 21:49:31 +08:00

16 lines
247 B
Python

class Export_Boolean(object):
TRUE = 1
FALSE = 0
class Export_bLink_InputOutputType(object):
INPUT = 0
OUTPUT = 1
class Export_pLink_InputOutputType(object):
PIN = 0
POUT = 1
PLOCAL = 2
PTARGET = 3
PATTR = 4