Move TGOs out of MapModel.

This commit is contained in:
Dan Albert
2022-03-03 17:10:12 -08:00
parent d0ad554e14
commit c5c596dc2f
19 changed files with 186 additions and 186 deletions

View File

@@ -4,10 +4,11 @@ from .database import Database
if TYPE_CHECKING:
from game.ato import Flight
from game.theater import FrontLine
from game.theater import FrontLine, TheaterGroundObject
class GameDb:
def __init__(self) -> None:
self.flights: Database[Flight] = Database()
self.front_lines: Database[FrontLine] = Database()
self.tgos: Database[TheaterGroundObject] = Database()