mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-22 20:31:26 +00:00
11 lines
295 B
C
11 lines
295 B
C
#ifndef __UI_SPLASH_H
|
|
#define __UI_SPLASH_H
|
|
|
|
void SP_DisplayLogos(void);
|
|
void SP_DoLicense(void);
|
|
void* SP_LoadFile(const char* name);
|
|
void* SP_LoadFileWithLanguage(const char *name);
|
|
char* SP_GetLanguageExt();
|
|
void SP_DrawTexture(void* pixels, float width, float height, float vShift);
|
|
|
|
#endif
|