blob: f63d27e6b980e7dc54e97925b8867671754590dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef CLIENT_PLAY_MENU_HH
#define CLIENT_PLAY_MENU_HH 1
#pragma once
namespace gui::play_menu
{
void init(void);
void shutdown(void);
void layout(void);
void update_late(void);
} // namespace gui::play_menu
#endif // CLIENT_PLAY_MENU_HH
|