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.
8 lines
154 B
Python
8 lines
154 B
Python
from typing import Optional
|
|
|
|
from game.radio.radios import RadioFrequency
|
|
|
|
|
|
class RadioFrequencyContainer:
|
|
frequency: Optional[RadioFrequency] = None
|