blob: 5daa1178cfd3d4cefb730213938a708fa55a62d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
pub mod pipeline;
pub mod render;
pub mod texture;
pub use pipeline::UiPipeline;
pub use render::do_render;
use stockton_types::Vector2;
pub use texture::{ensure_textures, UiTextures};
#[derive(Debug)]
pub struct UiPoint(pub Vector2, pub Vector2, pub [f32; 4]);
|