use crate::defines::PointerSize; pub mod script_type; pub mod script_type_namespace; pub mod type_library; pub trait Type { fn get_size(&self) -> PointerSize; fn is_enum(&self) -> bool; }