dcs-retribution/game/db/gamedb.py
Dan Albert cba68549d8 Add a UUID -> Flight database to Game.
This will be expanded with other types as needed.
2022-02-19 12:57:41 -08:00

12 lines
216 B
Python

from typing import TYPE_CHECKING
from .database import Database
if TYPE_CHECKING:
from game.ato import Flight
class GameDb:
def __init__(self) -> None:
self.flights: Database[Flight] = Database()