def __init__(self, ID): SharedObject.__init__(self, ID) self.hits = 0 self.darts = 0 self.ready = False
def __init__(self, ID, row): self.row = row SharedObject.__init__(self, ID)
def __init__(self, ID, r, c, b): self.r = r self.c = c self.block = b SharedObject.__init__(self, ID)
def __init__(self, ID): self.ID = ID self.error = 0.0 self.progress = 0 SharedObject.__init__(self, ID)
def __init__(self, ID, rowChunk): self.rowChunk = rowChunk SharedObject.__init__(self, ID)