syncing changes from ballistica/master

This commit is contained in:
Ayush Saini 2025-02-09 00:17:58 +05:30
parent 2a07c0c840
commit 8913080562
227 changed files with 15756 additions and 12772 deletions

View file

@ -15,6 +15,30 @@ if TYPE_CHECKING:
from typing import Any
def register_all_maps() -> None:
"""Registering all maps."""
for maptype in [
HockeyStadium,
FootballStadium,
Bridgit,
BigG,
Roundabout,
MonkeyFace,
ZigZag,
ThePad,
DoomShroom,
LakeFrigid,
TipTop,
CragCastle,
TowerD,
HappyThoughts,
StepRightUp,
Courtyard,
Rampage,
]:
bs.register_map(maptype)
class HockeyStadium(bs.Map):
"""Stadium map used for ice hockey games."""