engage/generated/unity_engine/
lowerresblittexture.rs1#[cfg(feature = "unity_engine-lowerresblittexture-types")]
4mod __types {
5 #[allow(unused_imports)] use ::unity::prelude::*;
6
7 use super::*;
8 use crate::{
9 system::object::{IObject, Object},
10 unity_engine::object_2::{IObject_2, Object_2},
11 };
12
13 #[doc=include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/","docs/unity_engine/lowerresblittexture/LowerResBlitTexture.md"))]
14 #[::unity::class(namespace = "UnityEngine", name = "LowerResBlitTexture")]
15 #[parent(crate::unity_engine::object_2::Object_2)]
16 pub struct LowerResBlitTexture {}
17}
18
19#[cfg(feature = "unity_engine-lowerresblittexture-types")]
20pub use __types::*;
21
22#[cfg(feature = "unity_engine-lowerresblittexture")]
23pub trait ILowerResBlitTextureMethods: ILowerResBlitTexture {
24 #[doc = "`LowerResBlitTextureDontStripMe()` overload"]
25 fn lower_res_blit_texture_dont_strip_me(self) -> () {
26 unsafe {
27 let __receiver = <LowerResBlitTexture as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
28 ::unity::il2cpp_call!((::unity::module_base()+0x32d8a30usize)as*mut u8,();
29(LowerResBlitTexture)__receiver)
30 }
31 }
32}
33
34#[cfg(feature = "unity_engine-lowerresblittexture")]
35impl<__T: ILowerResBlitTexture> ILowerResBlitTextureMethods for __T {}
36
37#[cfg(feature = "unity_engine-lowerresblittexture")]
38impl LowerResBlitTexture {
39 pub fn lower_res_blit_texture_dont_strip_me_method_info() -> &'static ::unity::il2cpp::MethodInfo {
40 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[0]
41 }
42}
43
44#[cfg(feature = "unity_engine-lowerresblittexture")]
45#[doc(hidden)]
46pub mod prelude {
47 pub use super::{ILowerResBlitTexture, ILowerResBlitTextureMethods, LowerResBlitTexture};
48 #[cfg(feature = "system-object")]
49 pub use crate::system::object::IObjectMethods;
50 #[cfg(feature = "unity_engine-object_2")]
51 pub use crate::unity_engine::object_2::IObject_2Methods;
52 pub use crate::{system::object::IObject, unity_engine::object_2::IObject_2};
53}