mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
13 lines
163 B
C
13 lines
163 B
C
|
#ifndef MAIN_H
|
||
|
#define MAIN_H
|
||
|
|
||
|
#include "ultra64.h"
|
||
|
|
||
|
extern s32 gScreenWidth;
|
||
|
extern s32 gScreenHeight;
|
||
|
extern u32 gSystemHeapSize;
|
||
|
|
||
|
void Main(void* arg);
|
||
|
|
||
|
#endif
|