File size: 197 Bytes
3831e97
 
 
 
 
 
1
2
3
4
5
6
7
"""Spawn budget table by phase."""
from __future__ import annotations
from game.sim.stage_table import spawn_budget, SPAWN_BUDGET

def budget_for(phase: str) -> int:
    return spawn_budget(phase)