summaryrefslogtreecommitdiffstats
path: root/src/game/client/gui/splash.hh
blob: abdeb5aa81121c2d06752ce941395fbf2059c8f9 (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: splash.hh
// Description: Startup splash screen

#ifndef CLIENT_GUI_SPLASH_HH
#define CLIENT_GUI_SPLASH_HH
#pragma once

namespace client_splash
{
void init(void);
void init_late(void);
void render(void);
} // namespace client_splash

#endif