engage/generated/root/
akenumflagattribute.rs1#[cfg(feature = "root-akenumflagattribute-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::propertyattribute::{IPropertyAttribute, PropertyAttribute},
11 };
12
13 #[doc=include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/","docs/root/akenumflagattribute/AkEnumFlagAttribute.md"))]
14 #[::unity::class(namespace = "", name = "AkEnumFlagAttribute")]
15 #[parent(crate::unity_engine::propertyattribute::PropertyAttribute)]
16 pub struct AkEnumFlagAttribute {
17 #[offset(16)]
18 #[rename(name = "Type")]
19 pub r#type: ::unity::SystemType,
20 }
21}
22
23#[cfg(feature = "root-akenumflagattribute-types")]
24pub use __types::*;
25
26#[cfg(feature = "root-akenumflagattribute")]
27pub trait IAkEnumFlagAttributeMethods: IAkEnumFlagAttribute {
28 #[doc = "`.ctor(::unity::SystemType)` overload"]
29 fn ctor(self, r#type: impl ::core::convert::Into<::unity::SystemType>) -> () {
30 unsafe {
31 let __receiver = <AkEnumFlagAttribute as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
32 ::unity::il2cpp_call!((::unity::module_base()+0x2f19f10usize)as*mut u8,();
33(AkEnumFlagAttribute)__receiver,(::unity::SystemType)::core::convert::Into::into(r#type))
34 }
35 }
36}
37
38#[cfg(feature = "root-akenumflagattribute")]
39impl<__T: IAkEnumFlagAttribute> IAkEnumFlagAttributeMethods for __T {}
40
41#[cfg(feature = "root-akenumflagattribute")]
42impl AkEnumFlagAttribute {
43 pub fn ctor_method_info() -> &'static ::unity::il2cpp::MethodInfo {
44 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[0]
45 }
46}
47
48#[cfg(feature = "root-akenumflagattribute")]
49impl AkEnumFlagAttribute {
50 #[doc = "`.ctor(::unity::SystemType)` — overload selector"]
51 pub fn new(r#type: ::unity::SystemType) -> Self {
52 let this = <Self as ::unity::FromIlInstance>::instantiate().unwrap_or_else(|| {
53 panic!(
54 "{}
55::{}
56 failed to instantiate",
57 ::core::stringify!(AkEnumFlagAttribute),
58 ::core::stringify!(new),
59 )
60 });
61 <Self as IAkEnumFlagAttributeMethods>::ctor(this, r#type);
62 this
63 }
64}
65
66#[cfg(feature = "root-akenumflagattribute")]
67#[doc(hidden)]
68pub mod prelude {
69 pub use super::{AkEnumFlagAttribute, IAkEnumFlagAttribute, IAkEnumFlagAttributeMethods};
70 #[cfg(feature = "system-object")]
71 pub use crate::system::object::IObjectMethods;
72 #[cfg(feature = "unity_engine-propertyattribute")]
73 pub use crate::unity_engine::propertyattribute::IPropertyAttributeMethods;
74 pub use crate::{system::object::IObject, unity_engine::propertyattribute::IPropertyAttribute};
75}