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

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