dcs-retribution/game/models/destroyed_units.py

15 lines
214 B
Python

class DestroyedUnit:
"""
Store info about a destroyed unit
"""
x: int
y: int
name: str
def __init__(self, x , y, name):
self.x = x
self.y = y
self.name = name