mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-16 07:31:55 -04:00
21 lines
337 B
C
21 lines
337 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define DEFAULT_WIDTH 600
|
|
#define DEFAULT_HEIGHT 200
|
|
#define FPS 60
|
|
|
|
#define DELTA_MS_DEFAULT 20
|
|
|
|
#define WINDOW_TITLE "DINO. Jump: UP/SPACE Duck: DOWN Restart: jump or ENTER"
|
|
|
|
// #define DBG
|
|
|
|
#ifdef DBG
|
|
#define dbg_printf(...) debug_printf(__VA_ARGS__)
|
|
#else
|
|
#define dbg_printf(...)
|
|
#endif
|
|
|
|
#endif
|