mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
added a customizable plugin system
- 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.
This commit is contained in:
10
plugin/__init__.py
Normal file
10
plugin/__init__.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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()
|
||||
]
|
||||
Reference in New Issue
Block a user