Skip to main content

engage/generated/system/
action_13.rs

1// @generated by il2cpp-bindgen — do not edit by hand.
2
3#[cfg(feature = "system-action_13-types")]
4mod __types {
5    #[allow(unused_imports)] use ::unity::prelude::*;
6
7    use super::*;
8    use crate::system::{
9        delegate::{Delegate, IDelegate},
10        multicastdelegate::{IMulticastDelegate, MulticastDelegate},
11        object::{IObject, Object},
12    };
13
14    #[doc=include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/","docs/system/action_13/Action_13.md"))]
15    #[::unity::class(namespace = "System", name = "Action`13")]
16    #[parent(crate::system::multicastdelegate::MulticastDelegate)]
17    #[parent(crate::system::delegate::Delegate)]
18    #[parent(crate::system::object::Object)]
19    pub struct Action_13<
20        T0: ::unity::ClassIdentity,
21        T1: ::unity::ClassIdentity,
22        T2: ::unity::ClassIdentity,
23        T3: ::unity::ClassIdentity,
24        T4: ::unity::ClassIdentity,
25        T5: ::unity::ClassIdentity,
26        T6: ::unity::ClassIdentity,
27        T7: ::unity::ClassIdentity,
28        T8: ::unity::ClassIdentity,
29        T9: ::unity::ClassIdentity,
30        T10: ::unity::ClassIdentity,
31        T11: ::unity::ClassIdentity,
32        T12: ::unity::ClassIdentity,
33    > {}
34}
35
36#[cfg(feature = "system-action_13-types")]
37pub use __types::*;
38
39#[cfg(feature = "system-action_13")]
40#[::unity::methods]
41impl<
42        T0: ::unity::ClassIdentity,
43        T1: ::unity::ClassIdentity,
44        T2: ::unity::ClassIdentity,
45        T3: ::unity::ClassIdentity,
46        T4: ::unity::ClassIdentity,
47        T5: ::unity::ClassIdentity,
48        T6: ::unity::ClassIdentity,
49        T7: ::unity::ClassIdentity,
50        T8: ::unity::ClassIdentity,
51        T9: ::unity::ClassIdentity,
52        T10: ::unity::ClassIdentity,
53        T11: ::unity::ClassIdentity,
54        T12: ::unity::ClassIdentity,
55    > Action_13<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
56{
57    #[doc = "`.ctor(crate::system::object::Object, ::unity::IntPtr)` overload"]
58    #[method(name = ".ctor", args = 2)]
59    pub fn ctor(self, object: crate::system::object::Object, method: ::unity::IntPtr) -> ();
60
61    #[doc = "`Invoke(T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)` overload"]
62    #[method(name = "Invoke", args = 13)]
63    pub fn invoke(
64        self,
65        arg1: T0,
66        arg2: T1,
67        arg3: T2,
68        arg4: T3,
69        arg5: T4,
70        arg6: T5,
71        arg7: T6,
72        arg8: T7,
73        arg9: T8,
74        arg10: T9,
75        arg11: T10,
76        arg12: T11,
77        arg13: T12,
78    ) -> ();
79}
80
81#[cfg(feature = "system-action_13")]
82impl<
83        T0: ::unity::ClassIdentity,
84        T1: ::unity::ClassIdentity,
85        T2: ::unity::ClassIdentity,
86        T3: ::unity::ClassIdentity,
87        T4: ::unity::ClassIdentity,
88        T5: ::unity::ClassIdentity,
89        T6: ::unity::ClassIdentity,
90        T7: ::unity::ClassIdentity,
91        T8: ::unity::ClassIdentity,
92        T9: ::unity::ClassIdentity,
93        T10: ::unity::ClassIdentity,
94        T11: ::unity::ClassIdentity,
95        T12: ::unity::ClassIdentity,
96    > Action_13<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
97{
98    #[doc = "`.ctor(crate::system::object::Object, ::unity::IntPtr)` — overload selector"]
99    pub fn new(object: crate::system::object::Object, method: ::unity::IntPtr) -> Self {
100        let this = <Self as ::unity::FromIlInstance>::instantiate().unwrap_or_else(|| {
101            panic!(
102                "{}
103::{}
104 failed to instantiate",
105                ::core::stringify!(Action_13),
106                ::core::stringify!(new),
107            )
108        });
109        <Self as IAction_13Methods<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>>::ctor(this, object, method);
110        this
111    }
112}
113
114#[cfg(feature = "system-action_13")]
115#[doc(hidden)]
116pub mod prelude {
117    pub use super::{Action_13, IAction_13, IAction_13Methods};
118    #[cfg(feature = "system-delegate")]
119    pub use crate::system::delegate::IDelegateMethods;
120    #[cfg(feature = "system-multicastdelegate")]
121    pub use crate::system::multicastdelegate::IMulticastDelegateMethods;
122    #[cfg(feature = "system-object")]
123    pub use crate::system::object::IObjectMethods;
124    pub use crate::system::{delegate::IDelegate, multicastdelegate::IMulticastDelegate, object::IObject};
125}