mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
14 lines
330 B
Python
14 lines
330 B
Python
from typing import Optional
|
|
|
|
from dcs.unitgroup import StaticGroup
|
|
|
|
from game.point_with_heading import PointWithHeading
|
|
|
|
|
|
class Helipad(PointWithHeading):
|
|
def __init__(self):
|
|
super(Helipad, self).__init__()
|
|
self.heading = 0
|
|
self.occupied = False
|
|
self.static_unit: Optional[StaticGroup] = None
|