SeraphScript/src/types/mod.rs

11 lines
198 B
Rust

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;
}