use crate::gml::instruction::InstanceType;
use crate::gml::instruction::VariableType;
use crate::prelude::GMRef;
use crate::wad::elem::variable::Variable;
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct CodeVariable {
pub variable: GMRef<Variable>,
pub variable_type: VariableType,
pub instance_type: InstanceType,
pub is_int32: bool,
}