mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-24 05:49:48 +00:00
28 lines
609 B
C
28 lines
609 B
C
#pragma once
|
|
#define EXPORT __declspec( dllexport )
|
|
#include <cstdio>
|
|
|
|
|
|
static int *Animations = (int*)0x006B245C;
|
|
|
|
static int * const dword_5FCCF4 = (int*)0x5FCCF4;
|
|
|
|
static unsigned char * const submarinerDieRelated = (unsigned char*)0x0060CFC4;
|
|
|
|
static unsigned __int16 * const word_6B2478 = (unsigned __int16*)0x6B2478;
|
|
static int * const gTimerRelated = (int*)0x006B4CA8;
|
|
|
|
static void print_if_false(unsigned char cry, char * message, ...) {
|
|
if (cry) {
|
|
printf(message);
|
|
}
|
|
}
|
|
|
|
static void printf_fancy(const char *message, ...) {
|
|
// TODO
|
|
}
|
|
|
|
static void stubbed_printf(char *message){
|
|
puts(message);
|
|
}
|