21 lines
330 B
Python
21 lines
330 B
Python
|
|
class Export_Boolean(object):
|
|
TRUE = 1
|
|
FALSE = 0
|
|
|
|
class Export_Behavior_Type(object):
|
|
FUNCTION = 0
|
|
GRAPH = 1
|
|
SCRIPT = 4
|
|
|
|
class Export_bLink_InputOutputType(object):
|
|
INPUT = 0
|
|
OUTPUT = 1
|
|
|
|
class Export_pLink_InputOutputType(object):
|
|
PIN = 0
|
|
POUT = 1
|
|
PLOCAL = 2
|
|
PTARGET = 3
|
|
PATTR = 4
|