mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
12 lines
221 B
Python
12 lines
221 B
Python
import typing
|
|
import dcs
|
|
|
|
from .controlpoint import *
|
|
|
|
from dcs.planes import *
|
|
from dcs.vehicles import *
|
|
|
|
class Base:
|
|
aircraft = [] # type: typing.Dict[PlaneType, int]
|
|
armor = [] # type: typing.Dict[Armor, int]
|