game loop; player budget; enemy progression; GUI WIP

This commit is contained in:
Vasyl Horbachenko
2018-06-01 22:39:12 +03:00
committed by Vasiliy Horbachenko
parent 4cd3c24b49
commit ad4d183972
23 changed files with 906 additions and 129 deletions

View File

@@ -0,0 +1,12 @@
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)