The beginnings of my Air Traffic Control game.

Also, I included my game plan.
This commit is contained in:
Danielle Tear
2024-03-05 17:51:19 -05:00
parent 43c0cf70e7
commit eac94f2980
12 changed files with 914 additions and 1 deletions

7
agents/airport_agent.py Normal file
View File

@@ -0,0 +1,7 @@
class Airport:
def __init__(self, char, color, pos):
self.color = color
self.character = char
self.position = pos
self.z = 2