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

18 lines
479 B
Rust
Raw Normal View History

2023-08-25 00:24:41 +00:00
mod configuration;
pub use configuration::{configuration, ConfigurationView};
2023-06-15 04:09:50 +00:00
mod elements;
2023-08-25 00:24:41 +00:00
pub use elements::{game_preview::GamePreviewElement, menu::Menu, Action, Field, Toggle};
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,
};