Add tic tac toe drawing

This commit is contained in:
Joscha 2024-03-31 13:38:04 +02:00
parent 28c44b526c
commit 9c4ee1a350
3 changed files with 82 additions and 1 deletions

View file

@ -5,6 +5,7 @@ mod egg;
mod image;
mod photo;
mod text;
mod tictactoe;
use showbits_common::widgets::{FontStuff, HasFontStuff};
use tokio::sync::mpsc;
@ -14,6 +15,7 @@ use crate::printer::Printer;
pub use self::{
calendar::CalendarDrawing, cells::CellsDrawing, chat_message::ChatMessageDrawing,
egg::EggDrawing, image::ImageDrawing, photo::PhotoDrawing, text::TextDrawing,
tictactoe::TicTacToeDrawing,
};
#[derive(Default)]