blob: ddf97f9994325e63a20bd7a20198a4b56e6a39a9 (
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 play_menu
{
void init(void);
void deinit(void);
void layout(void);
void update_late(void);
} // namespace play_menu
#endif // CLIENT_PLAY_MENU_HH
|