sekiro 0.13.0

Raw structures and bindings for From Software's title Sekiro: Shadows Die Twice
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! A generated RVA struct.

// DO NOT EDIT THIS FILE DIRECTLY.

/// A struct containing offsets (relative to the beginning of the executable) of
/// various addresses of structures and functions. They can be converted to a
/// usable address using the [Pe::rva_to_va](pelite::pe64::Pe::rva_to_va) trait function
/// of [Program](fromsoftware_shared::Program).
///
/// These are populated from `mapper-profile.toml` in the root of this package
/// using `tools/binary-generator`.
pub struct RvaBundle {
    pub game_data_man_ptr: u32,
    pub global_hinstance: u32,
    pub map_item_man_grant_item: u32,
    pub map_item_man_ptr: u32,
}