mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
13 lines
448 B
Python
13 lines
448 B
Python
from dcs.ships import La_Combattante_II
|
|
|
|
from game.factions.faction import Faction
|
|
from game.theater import TheaterGroundObject
|
|
from gen.fleet.dd_group import DDGroupGenerator
|
|
|
|
|
|
class LaCombattanteIIGroupGenerator(DDGroupGenerator):
|
|
def __init__(self, game, ground_object: TheaterGroundObject, faction: Faction):
|
|
super(LaCombattanteIIGroupGenerator, self).__init__(
|
|
game, ground_object, faction, La_Combattante_II
|
|
)
|