Skip to main content

ICannonInspector

Trait ICannonInspector 

Source
pub trait ICannonInspector: IMapInspector {
    // Provided methods
    fn m_x(self) -> i32 { ... }
    fn set_m_x(self, value: i32) { ... }
    fn m_z(self) -> i32 { ... }
    fn set_m_z(self, value: i32) { ... }
    fn m_max_shells(self) -> i32 { ... }
    fn set_m_max_shells(self, value: i32) { ... }
    fn m_key_shells(self) -> Il2CppString { ... }
    fn set_m_key_shells(self, value: Il2CppString) { ... }
}

Provided Methods§

Source

fn m_x(self) -> i32

Source

fn set_m_x(self, value: i32)

Source

fn m_z(self) -> i32

Source

fn set_m_z(self, value: i32)

Source

fn m_max_shells(self) -> i32

Source

fn set_m_max_shells(self, value: i32)

Source

fn m_key_shells(self) -> Il2CppString

Source

fn set_m_key_shells(self, value: Il2CppString)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§