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