blob: fd4bf321a2c25302ed52c67bd2b1a395fbc4eca3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: scoreboard.hh
// Description: Display player list
#ifndef CLIENT_GUI_SCOREBOARD_HH
#define CLIENT_GUI_SCOREBOARD_HH
#pragma once
namespace scoreboard
{
void init(void);
void layout(void);
} // namespace scoreboard
#endif
|