mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-07-07 12:59:43 +01:00
19 lines
221 B
C
19 lines
221 B
C
/* $Id$ */
|
|
|
|
#ifndef SPLASH_H
|
|
#define SPLASH_H
|
|
|
|
#define SPLASH_IMAGE_FILE "splash.png"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif //__cplusplus
|
|
|
|
void DisplaySplashImage();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif //__cplusplus
|
|
|
|
#endif
|