We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 983d2e7 commit 7256989Copy full SHA for 7256989
src/proc/desc.rs
@@ -52,6 +52,10 @@ impl ProcDesc {
52
unsafe { proc_wait_while_false(method, None) }
53
}
54
55
+ pub fn jump_true<T>(method: &'static mut ProcBoolMethod<T>) -> &'static mut ProcDesc {
56
+ unsafe { proc_jump_true(method, None) }
57
+ }
58
+
59
// pub fn function_call<T>(function: &'static mut ProcVoidFunction<T>) -> Il2CppResult<&'static mut ProcDescCall<T>> {
60
// ProcDescCall::<T>::instantiate().map(|desc| {
61
// desc.desc.ty = ProcDescType::Call;
0 commit comments