sim: deltoid-loop D3 pitch economy

This commit is contained in:
deltoid-loop 2026-09-07 01:17:41 +02:00
parent 8419b35ba7
commit 37460e86c1
4 changed files with 102 additions and 0 deletions

13
game/sim/__init__.py Normal file
View file

@ -0,0 +1,13 @@
"""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",
]