// SPDX-License-Identifier: BSD-2-Clause // Copyright (c) 2025 Kirill Dmitrievich // File: play_menu.hh // Description: Server and world list screen #ifndef CLIENT_GUI_PLAY_MENU_HH #define CLIENT_GUI_PLAY_MENU_HH #pragma once namespace play_menu { void init(void); void shutdown(void); void layout(void); void update_late(void); } // namespace play_menu #endif