Skip to main content

IMapAction_ProcBlowMethods

Trait IMapAction_ProcBlowMethods 

Source
pub trait IMapAction_ProcBlowMethods: IMapAction_ProcBlow {
    // Provided methods
    fn ctor(
        self,
        actor: impl Into<UnitActor>,
        to_x: impl Into<i32>,
        to_z: impl Into<i32>,
    ) { ... }
    fn get_speed(self) -> f32 { ... }
    fn on_tick(self) { ... }
}

Provided Methods§

Source

fn ctor( self, actor: impl Into<UnitActor>, to_x: impl Into<i32>, to_z: impl Into<i32>, )

.ctor(crate::app::unitactor::UnitActor, i32, i32) overload

Source

fn get_speed(self) -> f32

get_Speed() overload

Source

fn on_tick(self)

OnTick() overload

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§

Source§

impl<__T: IMapAction_ProcBlow> IMapAction_ProcBlowMethods for __T

Available on crate feature app-mapaction only.