base mission generation framework

This commit is contained in:
Vasiliy Horbachenko
2018-05-24 11:53:40 +03:00
parent 6152570fd8
commit f4a3aef2d5
15 changed files with 180 additions and 28 deletions

11
theater/base.py Normal file
View File

@@ -0,0 +1,11 @@
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]