diff options
author | Colin Noga <Tempus@chronometry.ca> | 2012-02-27 12:34:56 -0600 |
---|---|---|
committer | Colin Noga <Tempus@chronometry.ca> | 2012-02-27 12:34:56 -0600 |
commit | d6924bebc44bf904ec3e9ed8126614f67a04df88 (patch) | |
tree | 159e94b87aa174b4bc86f565db975adfab729efe /include | |
parent | 12e4a674748be41a0105f6a7b3b8132d0a3a65b4 (diff) | |
parent | 21d7e41b006b88aa79821610661fefc8fe14b7ca (diff) | |
download | kamek-d6924bebc44bf904ec3e9ed8126614f67a04df88.tar.gz kamek-d6924bebc44bf904ec3e9ed8126614f67a04df88.zip |
Merge branch 'level-select' of ssh://treeki.rustedlogic.net:30000/Kamek into level-select
Diffstat (limited to '')
-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;
|