mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
14 lines
212 B
Python
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
|