8 lines
153 B
Python
8 lines
153 B
Python
|
|
class Shape(object):
|
|
def getVar(self, varid):
|
|
return self.vars[varid]
|
|
|
|
def setVar(self, varid, value):
|
|
self.vars[varid] = value
|