diff options
Diffstat (limited to 'include/game.h')
-rwxr-xr-x | include/game.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/game.h b/include/game.h index 0ee786a..cca0fac 100755 --- a/include/game.h +++ b/include/game.h @@ -24,6 +24,7 @@ inline T clamp(T value, T one, T two) { return (value < one) ? one : ((value > t extern "C" {
int strlen(const char *str);
char *strcpy(char *dest, const char *src);
+int strncmp(const char *str1, const char *str2, int num);
float atan(float x);
float atan2(float y, float x);
@@ -2666,6 +2667,7 @@ extern int currentScreenSizeID; extern float GlobalScreenWidth, GlobalScreenHeight;
+void DoSceneChange(u16 name, u32 sceneSettings, u32 unk);
extern u32 GlobalTickCount;
|