Dan Albert 8ed843a9cf
Move and split up weather.py.
This is getting out of hand, and I'm about to make it worse.
2023-05-18 13:31:26 +02:00

13 lines
202 B
Python

from __future__ import annotations
from dataclasses import dataclass
from dcs.weather import Wind
@dataclass(frozen=True)
class WindConditions:
at_0m: Wind
at_2000m: Wind
at_8000m: Wind