blob: 7a032ad8cd2827206375f8fe4a7f6c2586be2e5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CLIENT_SPLASH_HH
#define CLIENT_SPLASH_HH 1
#pragma once
namespace gui::client_splash
{
void init(void);
void init_late(void);
void render(void);
} // namespace gui::client_splash
#endif // CLIENT_SPLASH_HH
|