Files
pingpong/settings.h
2023-11-10 12:56:21 -08:00

21 lines
279 B
C

#ifndef SETTINGS_H_SENTRY
#define SETTINGS_H_SENTRY
#ifndef WINDOW_WIDTH
#define WINDOW_WIDTH 800
#endif
#ifndef WINDOW_HEIGHT
#define WINDOW_HEIGHT 600
#endif
#ifndef FPS
#define FPS 120
#endif
#ifndef TARGET_FRAME_TIME
#define TARGET_FRAME_TIME (1000 / FPS)
#endif
#endif