blob: 630a10eac65de0e4fc72bf9259b74540f80bc90c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: main_menu.hh
// Description: Main menu screen
#ifndef CLIENT_GUI_MAIN_MENU_HH
#define CLIENT_GUI_MAIN_MENU_HH
#pragma once
namespace main_menu
{
void init(void);
void shutdown(void);
void layout(void);
} // namespace main_menu
#endif
|