UniversalUI_Base/
general.rs

1//  UniversalUI_Base - general.rs
2//  created by sebhall on 28/07/2023
3//  
4//  UniversalUI_Base contains definitions for types
5//  common to other modules of the UniversalUI framework.
6//
7//  general.rs contains base types useful for modules within
8//  UniversalUI_Base and beyond.
9
10use std::ffi::c_float;
11
12#[allow(non_camel_case_types)]
13//  uID - used as an ID for various framework elements.
14pub type uID = usize;
15#[allow(non_camel_case_types)]
16//  uFloat - a standard floating point number.
17pub type uFloat = c_float;