pub trait IMapSetting: ISingletonMonoBehaviour_1<MapSetting> {
// Provided methods
fn m_map_terrain(self) -> MapTerrain { ... }
fn set_m_map_terrain(self, value: MapTerrain) { ... }
fn m_object_list(self) -> List_1<MapObject> { ... }
fn set_m_object_list(self, value: List_1<MapObject>) { ... }
fn m_object_dictionary(self) -> Dictionary_2<Il2CppString, MapObject> { ... }
fn set_m_object_dictionary(
self,
value: Dictionary_2<Il2CppString, MapObject>,
) { ... }
fn m_map_develop(self) -> MapTerrain { ... }
fn set_m_map_develop(self, value: MapTerrain) { ... }
}Provided Methods§
fn m_map_terrain(self) -> MapTerrain
fn set_m_map_terrain(self, value: MapTerrain)
fn m_object_list(self) -> List_1<MapObject>
fn set_m_object_list(self, value: List_1<MapObject>)
fn m_object_dictionary(self) -> Dictionary_2<Il2CppString, MapObject>
fn set_m_object_dictionary(self, value: Dictionary_2<Il2CppString, MapObject>)
fn m_map_develop(self) -> MapTerrain
fn set_m_map_develop(self, value: MapTerrain)
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.