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
237 B
Python
9 lines
237 B
Python
from typing import Optional
|
|
|
|
from game.radio.RadioFrequencyContainer import RadioFrequencyContainer
|
|
from game.radio.radios import RadioFrequency
|
|
|
|
|
|
class Link4Container(RadioFrequencyContainer):
|
|
link4: Optional[RadioFrequency] = None
|