sim: Pitchwell match foundation (open/seed/T1/HQ) + smoke

This commit is contained in:
Hernâni Marques 2026-09-14 01:24:37 +02:00
parent 7358d1ce1a
commit bd5ade8ec4
No known key found for this signature in database
7 changed files with 708 additions and 41 deletions

View file

@ -1,6 +1,16 @@
"""Godot-less Pitchwell sim stubs."""
"""Godot-less Pitchwell sim — economy + startable match stub."""
from .pitch_economy import Economy, SumpWell, Worker, START_PITCH, WORKER_LOAD, WELL_CAPACITY, SEEP_PER_SEC
from .pitch_economy import (
Economy,
SEEP_PER_SEC,
START_PITCH,
WELL_CAPACITY,
WORKER_LOAD,
SumpWell,
Worker,
)
from .match import Match, MatchPhase, open_match, seed_v0_path, train_t1_melee
from .catalog import FACTION_HOST, FACTION_STAFF, HZ
__all__ = [
"Economy",
@ -10,4 +20,12 @@ __all__ = [
"WORKER_LOAD",
"WELL_CAPACITY",
"SEEP_PER_SEC",
"Match",
"MatchPhase",
"open_match",
"seed_v0_path",
"train_t1_melee",
"FACTION_STAFF",
"FACTION_HOST",
"HZ",
]