mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
13 lines
382 B
Python
13 lines
382 B
Python
import logging
|
|
import random
|
|
from typing import Optional
|
|
|
|
from dcs.unitgroup import VehicleGroup
|
|
|
|
from game import db, Game
|
|
from game.theater.theatergroundobject import MissileSiteGroundObject
|
|
from gen.to_remove.scud_site import ScudGenerator
|
|
from gen.to_remove.v1_group import V1GroupGenerator
|
|
|
|
MISSILES_MAP = {"V1GroupGenerator": V1GroupGenerator, "ScudGenerator": ScudGenerator}
|