Dan Albert 799dbfa99c Move and split up weather.py.
This is getting out of hand, and I'm about to make it worse.
2023-05-16 00:52:51 -07:00

12 lines
184 B
Python

from __future__ import annotations
from dataclasses import dataclass
from game.utils import Distance
@dataclass(frozen=True)
class Fog:
visibility: Distance
thickness: int