mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Resolves #70 Freq/Channel will turn orange when double booked. Freq will turn red if GUARD freq was assigned.
9 lines
171 B
Python
9 lines
171 B
Python
from typing import Optional
|
|
|
|
from game.radio.tacan import TacanChannel
|
|
|
|
|
|
class TacanContainer:
|
|
tacan: Optional[TacanChannel] = None
|
|
tcn_name: Optional[str] = None
|