mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
13 lines
256 B
Python
13 lines
256 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)
|
|
|