mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 15:01:32 -04:00
22035890fa
* Idle bss and cleanup * main bss and cleanup * format * Remove pad comment about sAudioMgr * PR * Missed a couple size_t changes * unused pads * static
20 lines
334 B
C
20 lines
334 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include "ultra64.h"
|
|
#include "scheduler.h"
|
|
#include "padmgr.h"
|
|
|
|
extern s32 gScreenWidth;
|
|
extern s32 gScreenHeight;
|
|
extern size_t gSystemHeapSize;
|
|
|
|
extern u32 gSegments[NUM_SEGMENTS];
|
|
extern SchedContext gSchedContext;
|
|
extern OSThread gGraphThread;
|
|
extern PadMgr gPadMgr;
|
|
|
|
void Main(void* arg);
|
|
|
|
#endif
|