22 lines
341 B
Rust
22 lines
341 B
Rust
use bevy::ecs::system::SystemParam;
|
|
use bevy::prelude::*;
|
|
use bevy_ratatui::RatatuiContext;
|
|
use ratatui::{
|
|
layout::{},
|
|
widgets::Paragraph,
|
|
};
|
|
|
|
use jong::{
|
|
game::{
|
|
player::Hand,
|
|
wall::{Wall, WallTiles},
|
|
},
|
|
tiles::Tile,
|
|
};
|
|
|
|
use crate::tui::TuiState;
|
|
|
|
pub(crate) mod hand;
|
|
pub(crate) mod ingame;
|
|
mod tiles;
|
|
|