struct plant {
struct page *(*path)(void);
char *description;
};
struct plant tabletop_games[] = {
{
central_processing,
"cooperative card-based puzzle about bitwise operations",
},
{
coin_game,
"two players, eight coins, turn-based classical mechanics",
},
{
hidden_wumpus,
"geometry and deception for 3+ players and 1 storyteller"
},
};