mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
24 lines
318 B
C
24 lines
318 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include "types.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;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|