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

15 lines
393 B
Rust
Raw Normal View History

2023-06-15 04:09:50 +00:00
mod elements;
pub use elements::{action::Action, game_preview::GamePreviewElement, menu::Menu};
2023-06-15 04:09:50 +00:00
2023-03-24 13:59:04 +00:00
mod playing_field;
pub use playing_field::{playing_field, PlayingFieldView};
2023-07-24 23:43:22 +00:00
mod home;
pub use home::{home, HomeView, HotseatPlayerElement, PlayerElement};
2023-05-26 04:16:40 +00:00
mod types;
pub use types::{
BoardElement, ChatElement, IntersectionElement, PlayerCardElement, StoneElement,
TextFieldElement,
};