コード例 #1
0
ファイル: fish.py プロジェクト: codelurker/fishtank
class SmallFish(Fish):
	def __init__(self, color=""):
		super(SmallFish, self).__init__(data.fish.fish, color)

		self.agent = FishAgent()

	def update(self, dt, fishes, food, predators):
		return self.agent.update(self, dt, fishes, food, predators)
コード例 #2
0
ファイル: fish.py プロジェクト: codelurker/fishtank
	def __init__(self, color=""):
		super(SmallFish, self).__init__(data.fish.fish, color)

		self.agent = FishAgent()