shithub: puzzles

ref: 42cbd7688a7f05e0a5d56a603a04293307c1e1b2
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) extern const game x;
#include "generated-games.h"
#undef GAME

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

const int gamecount = lenof(gamelist);