Touhou/include/config.h

33 lines
395 B
C
Raw Normal View History

2020-06-01 19:03:13 +02:00
#ifndef _CONFIG_H
#define _CONFIG_H
2020-10-27 00:34:08 +01:00
// #define DWIDTH 396
// #define DHEIGHT 224
2020-10-25 00:44:52 +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-25 00:44:52 +02:00
// Profiling
enum {
PROFCTX_FPS = 0,
PROFCTX_ENGINE,
PROFCTX_DISPLAY,
PROFCTX_COUNT
};
2020-06-01 19:03:13 +02:00
#endif