monorepo/kifu/core/src/ui/mod.rs

18 lines
458 B
Rust
Raw Normal View History

2023-06-15 04:09:50 +00:00
mod elements;
pub use elements::{action::Action, menu::Menu};
2023-03-24 13:59:04 +00:00
mod playing_field;
pub use playing_field::{playing_field, PlayingFieldView};
2023-05-26 04:16:40 +00:00
// mod launch_screen;
// pub use launch_screen::{launch_screen, LaunchScreenView};
mod new_game;
2023-06-15 04:09:50 +00:00
pub use new_game::{new_game, HotseatPlayerElement, NewGameView, PlayerElement};
2023-05-26 04:16:40 +00:00
mod types;
pub use types::{
BoardElement, ChatElement, IntersectionElement, PlayerCardElement, StoneElement,
TextFieldElement,
};