18 lines
479 B
Rust
18 lines
479 B
Rust
mod configuration;
|
|
pub use configuration::{configuration, ConfigurationView};
|
|
|
|
mod elements;
|
|
pub use elements::{game_preview::GamePreviewElement, menu::Menu, Action, Field, Toggle};
|
|
|
|
mod playing_field;
|
|
pub use playing_field::{playing_field, PlayingFieldView};
|
|
|
|
mod home;
|
|
pub use home::{home, HomeView, HotseatPlayerElement, PlayerElement};
|
|
|
|
mod types;
|
|
pub use types::{
|
|
BoardElement, ChatElement, IntersectionElement, PlayerCardElement, StoneElement,
|
|
TextFieldElement,
|
|
};
|