eldenring 0.14.0

Structures, bindings, and utilities for From Software's title Elden Ring
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::ptr::NonNull;

use crate::cs::ChrIns;

#[repr(C)]
/// Source of name: RTTI
pub struct CSChrFallModule {
    vftable: usize,
    pub owner: NonNull<ChrIns>,
    unk10: i64,
    pub fall_timer: f32,
    hamari_fall_death_checked: bool,
    pub force_max_fall_height: bool,
    pub disable_fall_motion: bool,
}