12 lines
250 B
Python
Executable File
12 lines
250 B
Python
Executable File
|
|
class test(Plugin):
|
|
def __init__(self):
|
|
print "Constructor"
|
|
|
|
def onStart(self):
|
|
print "Start - state = " + str(self.context.state)
|
|
|
|
def onStop(self):
|
|
print "Stop - state = " + str(self.context.state)
|
|
|