mirror of
https://github.com/HarbourMasters/2ship2harkinian.git
synced 2024-11-23 05:59:40 +00:00
20 lines
340 B
C
20 lines
340 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 uintptr_t gSegments[NUM_SEGMENTS];
|
|
extern SchedContext gSchedContext;
|
|
extern OSThread gGraphThread;
|
|
extern PadMgr gPadMgr;
|
|
|
|
void Main(void* arg);
|
|
|
|
#endif
|