mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
* Added a pydcs extension for Swedish Military Assets for DCS by Currenthill v1.10 (2022-11-01). Also added shipmod decorator for the ships added in the mod and remove_ship function in faction.py * Added unit yamls for Swedish Military Assets for DCS by Currenthill v1.10 (2022-11-01) * Added missing RBS-15 group yaml and Ag 90 Sniper Team unit yaml. * Fixed swedishmilitaryassetspack imports. * Renamed some unit yamls for Swedish Military Assets pack. * Encoded LvKv9040.yaml in UTF-8. * Encoded Grkpbv90.yaml in UTF-8. * Encoded BV410*.yaml in UTF-8. * Encoded CV9040.yaml in UTF-8. * Fixed Strv103 yaml syntax. * Encoded Strv2000.yaml in UTF-8. * Renamed some unit yamls for Swedish Military Assets pack. * Renamed BV410 air-defence units. * Added Swedish short-range air defence groups. * Added Swedish medium- and long-range air defence groups (LvS-103 batteries). * Added icons for some Swedish Military Assets units. * Added faction files for: sweden_1997 sweden_2020
27 lines
672 B
Python
27 lines
672 B
Python
from .a4ec import *
|
|
from .a6a import *
|
|
from .f4b import *
|
|
from .f84g import *
|
|
from .f100 import *
|
|
from .f104 import *
|
|
from .f105 import *
|
|
from .f22a import *
|
|
from .frenchpack import *
|
|
from .hercules import *
|
|
from .highdigitsams import *
|
|
from .jas39 import *
|
|
from .su30 import *
|
|
from .su57 import *
|
|
from .uh60l import *
|
|
from .ov10a import *
|
|
from .swedishmilitaryassetspack import *
|
|
|
|
|
|
def load_mods() -> None:
|
|
"""Loads all mods.
|
|
|
|
Note that this function doesn't *do* anything. Its purpose is to prevent editors
|
|
from removing `import pydcs_extensions` when it is "unused", because mod imports
|
|
have side effects (unit types are registered with pydcs).
|
|
"""
|