mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +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 |