mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
10 lines
145 B
Python
10 lines
145 B
Python
|
|
|
|
class RunningMissionState:
|
|
|
|
killed_aircrafts = []
|
|
killed_ground_units = []
|
|
weapons_fired = []
|
|
|
|
def __init__(self):
|
|
pass |