UniversalUI_Base 0.1.2

Base types for the UniversalUI framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//  UniversalUI_Base - general.rs
//  created by sebhall on 28/07/2023
//  
//  UniversalUI_Base contains definitions for types
//  common to other modules of the UniversalUI framework.
//
//  general.rs contains base types useful for modules within
//  UniversalUI_Base and beyond.

use std::ffi::c_float;

#[allow(non_camel_case_types)]
//  uID - used as an ID for various framework elements.
pub type uID = usize;
#[allow(non_camel_case_types)]
//  uFloat - a standard floating point number.
pub type uFloat = c_float;