Exemplo n.º 1
0
 def drop(self, tile, weight):
   self.validify()
   if not isinstance(tile, Tile):
     raise TypeError('tile should be of [Tile]')
   tile.validify()
   return library.fishDrop(self._ptr, tile._ptr, weight)
Exemplo n.º 2
0
 def drop(self, x, y, weight):
   self.validify()
   return library.fishDrop(self._ptr, x, y, weight)