示例#1
0
 def __init__(self, ID):
     SharedObject.__init__(self, ID)
     self.hits = 0
     self.darts = 0
     self.ready = False
示例#2
0
 def __init__(self, ID, row):
     self.row = row
     SharedObject.__init__(self, ID)
示例#3
0
 def __init__(self, ID, r, c, b):
     self.r = r
     self.c = c
     self.block = b
     SharedObject.__init__(self, ID)
示例#4
0
    def __init__(self, ID):
        self.ID = ID
        self.error = 0.0
        self.progress = 0

        SharedObject.__init__(self, ID)
示例#5
0
 def __init__(self, ID, rowChunk):
     self.rowChunk = rowChunk
     SharedObject.__init__(self, ID)