Touhou/include/config.h

30 lines
349 B
C
Raw Normal View History

2020-06-01 19:03:13 +02:00
#ifndef _CONFIG_H
#define _CONFIG_H
2020-10-24 10:54:54 +02:00
#define SCREEN_X 270
#define SCREEN_Y 224
#define NULL (void*)(0)
2020-06-01 19:03:13 +02:00
enum {
WITCH_1 = 0,
WITCH_2,
WITCH_3,
WITCH_4,
WITCH_5,
WITCH_6,
WITCH_7,
WITCH_8,
N_WITCHES
};
2020-10-24 10:54:54 +02:00
// Profiling
enum {
PROFCTX_FPS = 0,
PROFCTX_ENGINE,
PROFCTX_DISPLAY,
PROFCTX_COUNT
};
2020-06-01 19:03:13 +02:00
#endif