Skip to main content

engage/generated/combat/
animationeventex.rs

1// @generated by il2cpp-bindgen — do not edit by hand.
2
3#[cfg(feature = "combat-animationeventex-types")]
4mod __types {
5    #[allow(unused_imports)] use ::unity::prelude::*;
6
7    use super::*;
8    use crate::system::object::{IObject, Object};
9
10    #[doc=include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/","docs/combat/animationeventex/AnimationEventEx.md"))]
11    #[::unity::class(namespace = "Combat", name = "AnimationEventEx")]
12    #[parent(crate::system::object::Object)]
13    pub struct AnimationEventEx {}
14}
15
16#[cfg(feature = "combat-animationeventex-types")]
17pub use __types::*;
18
19#[cfg(feature = "combat-animationeventex")]
20impl AnimationEventEx {
21    #[doc = "`IsEqualTo(crate::unity_engine::animationevent::AnimationEvent, crate::unity_engine::animationevent::AnimationEvent)` overload"]
22    pub fn is_equal_to(
23        a: impl ::core::convert::Into<crate::unity_engine::animationevent::AnimationEvent>,
24        b: impl ::core::convert::Into<crate::unity_engine::animationevent::AnimationEvent>,
25    ) -> bool {
26        unsafe {
27            ::unity::il2cpp_call!((::unity::module_base()+0x1c9c7d0usize)as*mut u8,bool;
28(crate::unity_engine::animationevent::AnimationEvent)::core::convert::Into::into(a),(crate::unity_engine::animationevent::AnimationEvent)::core::convert::Into::into(b))
29        }
30    }
31
32    #[doc = "`IsNotEqualTo(crate::unity_engine::animationevent::AnimationEvent, crate::unity_engine::animationevent::AnimationEvent)` overload"]
33    pub fn is_not_equal_to(
34        a: impl ::core::convert::Into<crate::unity_engine::animationevent::AnimationEvent>,
35        b: impl ::core::convert::Into<crate::unity_engine::animationevent::AnimationEvent>,
36    ) -> bool {
37        unsafe {
38            ::unity::il2cpp_call!((::unity::module_base()+0x1c9c980usize)as*mut u8,bool;
39(crate::unity_engine::animationevent::AnimationEvent)::core::convert::Into::into(a),(crate::unity_engine::animationevent::AnimationEvent)::core::convert::Into::into(b))
40        }
41    }
42
43    #[doc = "`CopyTo(crate::unity_engine::animationevent::AnimationEvent, crate::unity_engine::animationevent::AnimationEvent)` overload"]
44    pub fn copy_to(
45        src: impl ::core::convert::Into<crate::unity_engine::animationevent::AnimationEvent>,
46        dst: impl ::core::convert::Into<crate::unity_engine::animationevent::AnimationEvent>,
47    ) -> () {
48        unsafe {
49            ::unity::il2cpp_call!((::unity::module_base()+0x1c9c9a0usize)as*mut u8,();
50(crate::unity_engine::animationevent::AnimationEvent)::core::convert::Into::into(src),(crate::unity_engine::animationevent::AnimationEvent)::core::convert::Into::into(dst))
51        }
52    }
53}
54
55#[cfg(feature = "combat-animationeventex")]
56impl AnimationEventEx {
57    pub fn is_equal_to_method_info() -> &'static ::unity::il2cpp::MethodInfo {
58        <Self as ::unity::ClassIdentity>::class().raw().get_methods()[0]
59    }
60
61    pub fn is_not_equal_to_method_info() -> &'static ::unity::il2cpp::MethodInfo {
62        <Self as ::unity::ClassIdentity>::class().raw().get_methods()[1]
63    }
64
65    pub fn copy_to_method_info() -> &'static ::unity::il2cpp::MethodInfo {
66        <Self as ::unity::ClassIdentity>::class().raw().get_methods()[2]
67    }
68}
69
70#[cfg(feature = "combat-animationeventex")]
71#[doc(hidden)]
72pub mod prelude {
73    pub use super::{AnimationEventEx, IAnimationEventEx};
74    pub use crate::system::object::IObject;
75    #[cfg(feature = "system-object")]
76    pub use crate::system::object::IObjectMethods;
77}