blob: 2b66e2cac4dc7994aea469abafe4dbf0fe4d9c53 (
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 client_splash
{
void init(void);
void init_late(void);
void render(void);
} // namespace client_splash
#endif /* CLIENT_SPLASH_HH */
|