summaryrefslogtreecommitdiffstats
path: root/src/game/client/gui/crosshair.hh
blob: 0775bb2a6549f6f1e754a43af982a8796293a7ba (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: crosshair.hh
// Description: Crosshair rendering

#ifndef CLIENT_GUI_CROSSHAIR_HH
#define CLIENT_GUI_CROSSHAIR_HH
#pragma once

namespace crosshair
{
void init(void);
void shutdown(void);
void layout(void);
} // namespace crosshair

#endif