blob: b52f34c8f0fe7c271c56126953b6dd7bcb3e00ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef MAIN_H
#define MAIN_H
#include "ultra64.h"
extern s32 gScreenWidth;
extern s32 gScreenHeight;
extern size_t gSystemHeapSize;
extern OSThread gGraphThread;
void Main(void* arg);
#endif
|