Skip to content

Commit

Permalink
Add , but they are wider than regular characters
Browse files Browse the repository at this point in the history
  • Loading branch information
dharkness committed Aug 20, 2023
1 parent 8ada20c commit 8103899
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/layout/houses/house.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,13 @@ pub const CONSOLE_LABELS: [[char; 9]; 3] = [
['❶', '❷', '❸', '❹', '❺', '❻', '❼', '❽', '❾'],
];

#[rustfmt::skip]
pub const ALT_CONSOLE_LABELS: [[char; 9]; 3] = [
['Ⓐ', 'Ⓑ', 'Ⓒ', 'Ⓓ', 'Ⓔ', 'Ⓕ', 'Ⓖ', 'Ⓗ', 'Ⓙ'],
['①', '②', '③', '④', '⑤', '⑥', '⑦', '⑧', '⑨'],
['❶', '❷', '❸', '❹', '❺', '❻', '❼', '❽', '❾'],
];

pub const ROWS: [House; 9] = make_houses(Shape::Row);
pub const COLUMNS: [House; 9] = make_houses(Shape::Column);
pub const BLOCKS: [House; 9] = make_houses(Shape::Block);
Expand Down

0 comments on commit 8103899

Please sign in to comment.