Remove unused file.

mypy is flagging problems with this in the github action but not locally
for whatever reason, but it's not used so just delete it.
This commit is contained in:
Dan Albert 2021-04-25 20:30:55 -07:00
parent 475c7fd6db
commit e9f25eb562

View File

@ -1,13 +0,0 @@
from game.theater import ControlPoint
class FrontlineData:
"""
This Data structure will store information about an existing frontline
"""
def __init__(self, from_cp: ControlPoint, to_cp: ControlPoint):
self.to_cp = to_cp
self.from_cp = from_cp
self.enemy_units_position = []
self.blue_units_position = []