mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
base mission generation framework
This commit is contained in:
11
game/game.py
Normal file
11
game/game.py
Normal 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
3
game/side.py
Normal file
@@ -0,0 +1,3 @@
|
||||
import typing
|
||||
import dcs
|
||||
|
||||
Reference in New Issue
Block a user