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
#[repr(C)]
#[derive(Debug)]
pub struct FD4Time {
    vftable: usize,
    pub time: f32,
}

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn proper_sizes() {
        assert_eq!(0x10, size_of::<FD4Time>());
    }
}