Files
pingpong/settings.h
2023-11-13 18:19:25 -08:00

29 lines
378 B
C

#ifndef SETTINGS_H_SENTRY
#define SETTINGS_H_SENTRY
#ifndef WINDOW_WIDTH
#define WINDOW_WIDTH 1000
#endif
#ifndef WINDOW_HEIGHT
#define WINDOW_HEIGHT 650
#endif
#ifndef FPS
#define FPS 120
#endif
#ifndef TARGET_FRAME_TIME
#define TARGET_FRAME_TIME (1000 / FPS)
#endif
#ifndef ENABLE_FPS
#define ENABLE_FPS 0
#endif
#ifndef EMBED_FONTS
#define EMBED_FONTS 0
#endif
#endif