Begin to split out display module

Move the display to a dedicated module so that things can begin to DRY
out
This commit is contained in:
Greg Hellings
2024-10-16 15:44:50 -05:00
parent 529a1be7df
commit 0904dce763
4 changed files with 56 additions and 21 deletions
+1
View File
@@ -1,5 +1,6 @@
mod cell;
mod board;
pub mod display;
pub use board::Board;
pub use board::Point;