mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
20 lines
395 B
Python
20 lines
395 B
Python
import typing
|
|
import json
|
|
|
|
|
|
class Debriefing:
|
|
def __init__(self):
|
|
self.destroyed_units = {} # type: typing.Dict[str, typing.Dict[str, int]]
|
|
|
|
def parse(self, path: str):
|
|
with open(path, "r") as f:
|
|
events = json.load(f)
|
|
|
|
|
|
def debriefing_directory_location() -> str:
|
|
return "build/debrfiefing"
|
|
|
|
|
|
def wait_for_debriefing(callback: typing.Callable):
|
|
pass
|