mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2024-11-28 04:44:06 +00:00
add StageManager
This commit is contained in:
parent
0fa9778d0c
commit
f8b61f485a
2 changed files with 9 additions and 1 deletions
|
@ -27,6 +27,7 @@ pub static mut MENU_STRUCT: consts::TrainingModpackMenu = consts::TrainingModpac
|
|||
pub static mut MENU: &'static mut consts::TrainingModpackMenu = unsafe { &mut MENU_STRUCT };
|
||||
|
||||
pub static mut FIGHTER_MANAGER_ADDR: usize = 0;
|
||||
pub static mut STAGE_MANAGER_ADDR: usize = 0;
|
||||
|
||||
extern "C" {
|
||||
#[link_name = "\u{1}_ZN3app9smashball16is_training_modeEv"]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use crate::common::FIGHTER_MANAGER_ADDR;
|
||||
use crate::common::{FIGHTER_MANAGER_ADDR, STAGE_MANAGER_ADDR};
|
||||
use crate::hitbox_visualizer;
|
||||
use skyline::nn::ro::LookupSymbol;
|
||||
use smash::app::{self, lua_bind::*};
|
||||
|
@ -203,6 +203,13 @@ pub fn training_mods() {
|
|||
.as_bytes()
|
||||
.as_ptr(),
|
||||
);
|
||||
|
||||
LookupSymbol(
|
||||
&mut STAGE_MANAGER_ADDR,
|
||||
"_ZN3lib9SingletonIN3app12StageManagerEE9instance_E\u{0}"
|
||||
.as_bytes()
|
||||
.as_ptr(),
|
||||
);
|
||||
}
|
||||
|
||||
skyline::install_hooks!(
|
||||
|
|
Loading…
Reference in a new issue