mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-21 22:33:58 +08:00
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
# Released under the MIT License. See LICENSE for details.
|
|
#
|
|
"""Exposed functionality not intended for full public use.
|
|
|
|
Classes and functions contained here, while technically 'public', may change
|
|
or disappear without warning, so should be avoided (or used sparingly and
|
|
defensively).
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
|
|
from bascenev1._gameutils import get_trophy_string
|
|
from bascenev1._map import (
|
|
get_map_class,
|
|
register_map,
|
|
get_map_display_string,
|
|
get_filtered_map_name,
|
|
)
|
|
from bascenev1._messages import PlayerProfilesChangedMessage
|
|
from bascenev1._multiteamsession import DEFAULT_TEAM_COLORS, DEFAULT_TEAM_NAMES
|
|
from bascenev1._powerup import get_default_powerup_distribution
|
|
from bascenev1._playlist import (
|
|
get_default_free_for_all_playlist,
|
|
get_default_teams_playlist,
|
|
filter_playlist,
|
|
)
|
|
|
|
__all__ = [
|
|
'get_trophy_string',
|
|
'get_map_class',
|
|
'register_map',
|
|
'get_map_display_string',
|
|
'get_filtered_map_name',
|
|
'PlayerProfilesChangedMessage',
|
|
'DEFAULT_TEAM_COLORS',
|
|
'DEFAULT_TEAM_NAMES',
|
|
'get_default_powerup_distribution',
|
|
'get_default_free_for_all_playlist',
|
|
'get_default_teams_playlist',
|
|
'filter_playlist',
|
|
]
|