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