Skip to content

Commit 461020f

Browse files
committed
fix: add missing conundrum_table.hpp from merge
1 parent f0299eb commit 461020f

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#pragma once
2+
3+
#include <cstddef>
4+
5+
namespace flip7::countdown {
6+
7+
struct ConundrumEntry {
8+
const char* solution;
9+
const char* scramble;
10+
const char* hint;
11+
};
12+
13+
extern const ConundrumEntry kConundrumTable[];
14+
extern const std::size_t kConundrumTableSize;
15+
16+
} // namespace flip7::countdown

0 commit comments

Comments
 (0)