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