Move and split up weather.py.

This is getting out of hand, and I'm about to make it worse.
This commit is contained in:
Dan Albert
2023-05-15 23:34:21 -07:00
parent eb31a0f038
commit 799dbfa99c
13 changed files with 182 additions and 145 deletions

12
game/weather/wind.py Normal file
View File

@@ -0,0 +1,12 @@
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