예제 #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()