diff --git a/game/models/frontline_data.py b/game/models/frontline_data.py deleted file mode 100644 index f60d5ccd..00000000 --- a/game/models/frontline_data.py +++ /dev/null @@ -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 = []