mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-07-07 04:49:38 +01:00
21 lines
289 B
C
21 lines
289 B
C
/* $Id$ */
|
|
|
|
/** @file splash.h Functions to support splash screens for OSX. */
|
|
|
|
#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
|