mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
14 lines
309 B
Python
14 lines
309 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 CoastalSiteGroundObject
|
|
from gen.to_remove.silkworm import SilkwormGenerator
|
|
|
|
COASTAL_MAP = {
|
|
"SilkwormGenerator": SilkwormGenerator,
|
|
}
|