コード例 #1
0
ファイル: CogdoMazeGame.py プロジェクト: perpi06/ttoffline
 def createDrop(self, x, y):
     self.dropCounter = self.dropCounter + 1
     id = self.dropCounter
     drop = CogdoMazeDrop(self, id, x, y)
     self.drops[id] = drop
     return drop.getDropIval()
コード例 #2
0
 def createDrop(self, x, y):
     self.dropCounter = self.dropCounter + 1
     id = self.dropCounter
     drop = CogdoMazeDrop(self, id, x, y)
     self.drops[id] = drop
     return drop.getDropIval()