summaryrefslogtreecommitdiff
path: root/engine/src/data_types/dimens.rs
blob: b39562759682688035b85b414baf11a25e7a1f72 (plain)
1
2
3
4
5
6
7
/// Dimensions.
#[derive(Debug, Clone, Copy)]
pub struct Dimens<Value>
{
    pub width: Value,
    pub height: Value,
}