project_game/agents/airport_agent.py

7 lines
167 B
Python

class Airport:
def __init__(self, char, color, pos):
self.color = color
self.character = char
self.position = pos
self.z = 2