Move beacons module.

This isn't related to the missiongenerator, and importing this file from
some places (such as runway data) will cause a circular reference when
importing the rest of the missiongenerator package.
This commit is contained in:
Dan Albert
2022-09-27 17:59:01 -07:00
committed by Raffson
parent 2c53f7952f
commit 631ee96bbe
3 changed files with 8 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ from typing import Dict, Iterable, Union
import lupa
from game.missiongenerator.beacons import BEACONS_RESOURCE_PATH, Beacon, BeaconType
from game.dcs.beacons import BEACONS_RESOURCE_PATH, Beacon, BeaconType
THIS_DIR = Path(__file__).parent.resolve()
SRC_DIR = THIS_DIR.parents[1]