Move NavMesh out of MapModel.

This commit is contained in:
Dan Albert
2022-02-22 18:47:51 -08:00
parent 1a9930b93a
commit 0e6a303c17
15 changed files with 108 additions and 127 deletions

View File

@@ -1,5 +1,10 @@
from game import Game
from qt_ui.models import GameModel
from __future__ import annotations
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from game import Game
from qt_ui.models import GameModel
class GameContext: