pub trait IMapAction_ProcSyncSkyCastleMethods: IMapAction_ProcSyncSkyCastle {
// Provided methods
fn ctor(
self,
actor: impl Into<UnitActor>,
to_x: impl Into<i32>,
to_z: impl Into<i32>,
moving_sky_castle: impl Into<SkyCastle_MovingSkyCastle>,
) { ... }
fn on_create(self) { ... }
fn on_dispose(self) { ... }
fn on_tick(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
actor: impl Into<UnitActor>,
to_x: impl Into<i32>,
to_z: impl Into<i32>,
moving_sky_castle: impl Into<SkyCastle_MovingSkyCastle>,
)
fn ctor( self, actor: impl Into<UnitActor>, to_x: impl Into<i32>, to_z: impl Into<i32>, moving_sky_castle: impl Into<SkyCastle_MovingSkyCastle>, )
.ctor(crate::app::unitactor::UnitActor, i32, i32, crate::root::skycastle::SkyCastle_MovingSkyCastle) overload
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() 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§
impl<__T: IMapAction_ProcSyncSkyCastle> IMapAction_ProcSyncSkyCastleMethods for __T
Available on crate feature
app-mapaction only.