Files
ac-decomp/include/main.h
T
2023-04-22 00:55:05 -04:00

21 lines
229 B
C

#ifndef MAIN_H
#define MAIN_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
#define SCREEN_WIDTH 320
#define SCREEN_HEIGHT 240
extern int ScreenWidth;
extern int ScreenHeight;
#ifdef __cplusplus
}
#endif
#endif