mirror of
https://github.com/griffi-gh/hUI.git
synced 2024-11-10 01:48:42 -06:00
16 lines
312 B
Rust
16 lines
312 B
Rust
use glam::Vec2;
|
|
|
|
#[derive(Default)]
|
|
#[non_exhaustive]
|
|
pub struct Hints {
|
|
pub inner_content_size: Option<Vec2>,
|
|
pub inner_content_size_cache: Option<Vec<Vec2>>,
|
|
}
|
|
|
|
#[derive(Default)]
|
|
pub struct Response {
|
|
pub size: Vec2,
|
|
pub hints: Hints,
|
|
pub user_data: Option<Box<dyn std::any::Any>>,
|
|
}
|