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