mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2025-10-20 00:00:39 +00:00
42 lines
2 KiB
Python
42 lines
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) in mods.
|
||
|
|
"""
|
||
|
|
|
||
|
|
# pylint: disable=unused-import
|
||
|
|
|
||
|
|
from ba._map import (get_unowned_maps, get_map_class, register_map,
|
||
|
|
preload_map_preview_media, get_map_display_string,
|
||
|
|
get_filtered_map_name)
|
||
|
|
from ba._appconfig import commit_app_config
|
||
|
|
from ba._input import (get_device_value, get_input_map_hash,
|
||
|
|
get_input_device_config)
|
||
|
|
from ba._general import getclass, json_prep, get_type_name
|
||
|
|
from ba._activitytypes import JoinActivity, ScoreScreenActivity
|
||
|
|
from ba._apputils import (is_browser_likely_available, get_remote_app_name,
|
||
|
|
should_submit_debug_info)
|
||
|
|
from ba._benchmark import (run_gpu_benchmark, run_cpu_benchmark,
|
||
|
|
run_media_reload_benchmark, run_stress_test)
|
||
|
|
from ba._campaign import getcampaign
|
||
|
|
from ba._messages import PlayerProfilesChangedMessage
|
||
|
|
from ba._multiteamsession import DEFAULT_TEAM_COLORS, DEFAULT_TEAM_NAMES
|
||
|
|
from ba._music import do_play_music
|
||
|
|
from ba._netutils import (master_server_get, master_server_post,
|
||
|
|
get_ip_address_type)
|
||
|
|
from ba._powerup import get_default_powerup_distribution
|
||
|
|
from ba._profile import (get_player_profile_colors, get_player_profile_icon,
|
||
|
|
get_player_colors)
|
||
|
|
from ba._tips import get_next_tip
|
||
|
|
from ba._playlist import (get_default_free_for_all_playlist,
|
||
|
|
get_default_teams_playlist, filter_playlist)
|
||
|
|
from ba._store import (get_available_sale_time, get_available_purchase_count,
|
||
|
|
get_store_item_name_translated,
|
||
|
|
get_store_item_display_size, get_store_layout,
|
||
|
|
get_store_item, get_clean_price)
|
||
|
|
from ba._tournament import get_tournament_prize_strings
|
||
|
|
from ba._gameutils import get_trophy_string
|