You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
267 B

#pragma once
namespace input {
constexpr const auto COLS = 6;
constexpr const char DATA[][COLS] = {
"00100",
"11110",
"10110",
"10111",
"10101",
"01111",
"00111",
"11100",
"10000",
};
constexpr const auto ROWS = sizeof(DATA)/sizeof(DATA[0]);
}