mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
* Add Delta Dart * Added Banners and Icons * Add loadouts * Update f106.py * Update f106.py * Update VSN_F106A.yaml * Update VSN_F106B.yaml * Added the F-106 Delta Dart to factions. Also, replaced the banner with one by datoneslav, used with permission. Includes the official VSN logo (also used with permission). Also tweaked the backgrounds of the icons to blue to match the other aircraft. * Added changelog entry. * Add files via upload --------- Co-authored-by: MetalStormGhost <ghosti@smytky.org>
39 lines
956 B
Python
39 lines
956 B
Python
from .SWPack import *
|
|
from .a4ec import *
|
|
from .a7e import *
|
|
from .a6a import *
|
|
from .f9f import *
|
|
from .f100 import *
|
|
from .f104 import *
|
|
from .f105 import *
|
|
from .f106 import *
|
|
from .f15d import *
|
|
from .f15i_idf import *
|
|
from .f16i_idf import *
|
|
from .f22a import *
|
|
from .f4 import *
|
|
from .f84g import *
|
|
from .fa18efg import *
|
|
from .fa18ef_tanker import *
|
|
from .frenchpack import *
|
|
from .hercules import *
|
|
from .highdigitsams import *
|
|
from .irondome import *
|
|
from .jas39 import *
|
|
from .ov10a import *
|
|
from .spanishnavypack import *
|
|
from .super_etendard import *
|
|
from .su30 import *
|
|
from .su57 import *
|
|
from .swedishmilitaryassetspack import *
|
|
from .uh60l 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).
|
|
"""
|