mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-22 22:24:16 -04:00
1b0b96665a
Co-authored-by: NWPlayer123 <NWPlayer123@users.noreply.github.com>
31 lines
464 B
C
31 lines
464 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include "types.h"
|
|
#include "dolphin/os/OSThread.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define SCREEN_WIDTH 320
|
|
#define SCREEN_HEIGHT 240
|
|
|
|
#define SCREEN_WIDTH_F ((f32)SCREEN_WIDTH)
|
|
#define SCREEN_HEIGHT_F ((f32)SCREEN_HEIGHT)
|
|
|
|
extern int ScreenWidth;
|
|
extern int ScreenHeight;
|
|
|
|
extern OSThread graphThread;
|
|
extern u8 SegmentBaseAddress[0x40];
|
|
|
|
void main();
|
|
extern void mainproc(void* val);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|