using SVSim.BattleNode.Bridge; namespace SVSim.EmulatedEntrypoint.Services; /// /// Per-mode assembler for the battle-node MatchContext. Each multiplayer mode that /// fronts a do_matching endpoint adds one method here that reads its mode-specific /// state (TK2 run, current-deck pointer, open-room set_deck, ...) and produces a /// MatchContext for the bridge. /// public interface IMatchContextBuilder { /// /// Build a context from the viewer's active TK2 run + viewer cosmetics + config. /// Throws on missing run / incomplete draft. /// Task BuildForTwoPickAsync(long viewerId); }