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
game/game.py Normal file
View File

@@ -0,0 +1,11 @@
import typing
from theater.conflicttheater import *
class Game:
def __init__(self, theater: ConflictTheater):
self.theater = theater
def pass_time(self, time: int):
pass

3
game/side.py Normal file
View File

@@ -0,0 +1,3 @@
import typing
import dcs