mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
15 lines
397 B
Python
15 lines
397 B
Python
from typing import TYPE_CHECKING
|
|
|
|
from .database import Database
|
|
|
|
if TYPE_CHECKING:
|
|
from game.ato import Flight
|
|
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()
|