shithub: puzzles

ref: b5367ed18ac96f54595fbe6c17fe8a4a897020aa
dir: /list.c/

View raw version
/*
 * list.c: List of pointers to puzzle structures, for monolithic
 * platforms.
 *
 * This file depends on the header "generated-games.h", which is
 * constructed by CMakeLists.txt.
 */

#include "puzzles.h"

#define GAME(x) &x,
const game *gamelist[] = {
#include "generated-games.h"
};
#undef GAME

const int gamecount = lenof(gamelist);