5 lines
91 B
Python
5 lines
91 B
Python
|
|
class Shape(object):
|
|
def setVar(self, varid, value):
|
|
self.vars[varid] = value
|