OpenKKnD/game/sim/__init__.py

13 lines
286 B
Python

"""Godot-less Pitchwell sim stubs."""
from .pitch_economy import Economy, SumpWell, Worker, START_PITCH, WORKER_LOAD, WELL_CAPACITY, SEEP_PER_SEC
__all__ = [
"Economy",
"SumpWell",
"Worker",
"START_PITCH",
"WORKER_LOAD",
"WELL_CAPACITY",
"SEEP_PER_SEC",
]