mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 15:13:16 +00:00
fix string being wrong
This commit is contained in:
parent
69f4eb30a2
commit
6ea9d7d850
1 changed files with 14 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
use crate::lua::LuaState;
|
use crate::lua::LuaState;
|
||||||
use crate::noita::types::{CStr, StdMap, StdString, StdVec, Vec2};
|
use crate::noita::types::{StdMap, StdString, StdVec, Vec2};
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct GlobalStatsVTable {}
|
pub struct GlobalStatsVTable {}
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
@ -94,8 +94,20 @@ pub struct Language {
|
||||||
}
|
}
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
|
pub struct ModListEntry {
|
||||||
|
pub name: StdString,
|
||||||
|
pub steam_id: usize,
|
||||||
|
unk1: [u8; 4],
|
||||||
|
pub enabled: bool,
|
||||||
|
unk1_bool: bool,
|
||||||
|
unk2_bool: bool,
|
||||||
|
unk2: u8,
|
||||||
|
unk3: [u8; 4],
|
||||||
|
}
|
||||||
|
#[derive(Debug)]
|
||||||
|
#[repr(C)]
|
||||||
pub struct Mods {
|
pub struct Mods {
|
||||||
pub names: StdVec<CStr<0x28>>,
|
pub names: StdVec<ModListEntry>,
|
||||||
pub list: StdVec<Mod>,
|
pub list: StdVec<Mod>,
|
||||||
}
|
}
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue