pub trait IMapMind_MultiTargetsMethods: IMapMind_MultiTargets {
Show 14 methods
// Provided methods
fn ctor(self) { ... }
fn exists(self, unit: impl Into<Unit>) -> bool { ... }
fn index_of(self, unit: impl Into<Unit>) -> i32 { ... }
fn index_of_2(self, terrain: impl Into<TerrainData_2>) -> i32 { ... }
fn index_of_3(self, x: impl Into<i32>, z: impl Into<i32>) -> i32 { ... }
fn add(self, unit: impl Into<Unit>) { ... }
fn add_2(self, x: impl Into<i32>, z: impl Into<i32>, unit: impl Into<Unit>) { ... }
fn add_3(
self,
x: impl Into<i32>,
z: impl Into<i32>,
tid: impl Into<Il2CppString>,
) { ... }
fn add_4(
self,
x: impl Into<i32>,
z: impl Into<i32>,
terrain: impl Into<TerrainData_2>,
) { ... }
fn add_5(self, unit: impl Into<Unit>, value: impl Into<i32>) { ... }
fn add_6(self, x: impl Into<i32>, z: impl Into<i32>) { ... }
fn remove(self, unit: impl Into<Unit>) { ... }
fn get_cneter(self) -> Vector3 { ... }
fn get_unit_count(self) -> i32 { ... }
}Provided Methods§
Sourcefn index_of_2(self, terrain: impl Into<TerrainData_2>) -> i32
fn index_of_2(self, terrain: impl Into<TerrainData_2>) -> i32
IndexOf(crate::app::terraindata_2::TerrainData_2) overload
Sourcefn index_of_3(self, x: impl Into<i32>, z: impl Into<i32>) -> i32
fn index_of_3(self, x: impl Into<i32>, z: impl Into<i32>) -> i32
IndexOf(i32, i32) overload
Sourcefn add_2(self, x: impl Into<i32>, z: impl Into<i32>, unit: impl Into<Unit>)
fn add_2(self, x: impl Into<i32>, z: impl Into<i32>, unit: impl Into<Unit>)
Add(i32, i32, crate::app::unit::Unit) overload
Sourcefn add_3(
self,
x: impl Into<i32>,
z: impl Into<i32>,
tid: impl Into<Il2CppString>,
)
fn add_3( self, x: impl Into<i32>, z: impl Into<i32>, tid: impl Into<Il2CppString>, )
Add(i32, i32, ::unity::Il2CppString) overload
Sourcefn add_4(
self,
x: impl Into<i32>,
z: impl Into<i32>,
terrain: impl Into<TerrainData_2>,
)
fn add_4( self, x: impl Into<i32>, z: impl Into<i32>, terrain: impl Into<TerrainData_2>, )
Add(i32, i32, crate::app::terraindata_2::TerrainData_2) overload
Sourcefn add_5(self, unit: impl Into<Unit>, value: impl Into<i32>)
fn add_5(self, unit: impl Into<Unit>, value: impl Into<i32>)
Add(crate::app::unit::Unit, i32) overload
Sourcefn get_cneter(self) -> Vector3
fn get_cneter(self) -> Vector3
GetCneter() overload
Sourcefn get_unit_count(self) -> i32
fn get_unit_count(self) -> i32
GetUnitCount() 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: IMapMind_MultiTargets> IMapMind_MultiTargetsMethods for __T
Available on crate feature
app-mapmind only.