dcs-retribution/plugin/__init__.py
David Pierron ec6fc076de multiple changes
- load plugins when loading a game
- moved plugins scripts to resources/plugins (for pyinstaller)
- removed vanilla JTAC and JTAC_smoke options and settings GUI
- call JtacAutolasePlugin in armor.py
- made a dictionary of INSTALLED_PLUGINS
- removed NIOD from the VEAF plugin
2020-10-12 19:49:39 +02:00

11 lines
319 B
Python

from .base_plugin import BasePlugin
from .veaf_plugin import VeafPlugin
from .jtacautolase_plugin import JtacAutolasePlugin
from .liberation_plugin import LiberationPlugin
INSTALLED_PLUGINS={
"VeafPlugin": VeafPlugin(),
"JtacAutolasePlugin": JtacAutolasePlugin(),
"LiberationPlugin": LiberationPlugin(),
}