mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
- the base LUA functionality has been implemented as a mandatory plugin - the jtacautolase functionality has been implemented as a plugin - added a VEAF framework plugin The plugins have GUI elements in the Settings window.
10 lines
267 B
Python
10 lines
267 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(),
|
|
JtacAutolasePlugin(),
|
|
LiberationPlugin()
|
|
] |