havok_types/
lib.rs

1//! All havok types definitions.
2pub mod cstring;
3pub mod half;
4pub mod math;
5pub mod parse_int;
6pub mod pointer;
7pub mod signature;
8pub mod string_ptr;
9pub mod ulong;
10pub mod variant;
11
12pub use cstring::*;
13pub use half::f16;
14pub use math::*;
15pub use pointer::*;
16pub use signature::*;
17pub use string_ptr::*;
18pub use ulong::*;
19pub use variant::*;
20
21mod lib {
22    pub use std::borrow::Cow;
23
24    pub use core::fmt;
25    pub use core::fmt::Debug;
26    pub use core::str::FromStr;
27}
28
29/// Unicode null
30pub const NULL_STR: &str = "\u{2400}";