From 428b68f791edcb89c811c9aca5dedbf7ec5d1335 Mon Sep 17 00:00:00 2001 From: Emil Williams Date: Tue, 17 Feb 2026 06:47:32 +0000 Subject: revised tiles, powerups, timer + basic gameplay --- source/options.gperf | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 source/options.gperf (limited to 'source/options.gperf') diff --git a/source/options.gperf b/source/options.gperf new file mode 100644 index 0000000..5d07a6f --- /dev/null +++ b/source/options.gperf @@ -0,0 +1,28 @@ +%{ +enum { +OPTION_NONE=0, +OPTION_HELP, +OPTION_RESOLUTION, +OPTION_FPS, +OPTION_UPS, +OPTION_FONT, +OPTION_SPRITESHEET, +OPTION_SPRITESHEET_SCALE, +OPTION_PLAYER_COUNT, +OPTION_MAP_SIZE, +}; +%} +struct options { char * name; int number; }; +%% +help, OPTION_HELP +h, OPTION_HELP +?, OPTION_HELP +resolution, OPTION_RESOLUTION +fps, OPTION_FPS +ups, OPTION_UPS +font, OPTION_FONT +spritesheet, OPTION_SPRITESHEET +spritesheet_scale, OPTION_SPRITESHEET_SCALE +players, OPTION_PLAYER_COUNT +map, OPTION_MAP_SIZE +map_size, OPTION_MAP_SIZE -- cgit v1.2.3