dcs_liberation/game/models/destroyed_units.py
2021-02-12 20:10:45 -08:00

14 lines
212 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