blob: eeaeca87f60366ed7982c42cee58f0796e0e10ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 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
|