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 vtable_rs::VPtr;

use crate::fd4::FD4SlotInsBaseVmt;

#[repr(C)]
pub struct ChrSlotBase {
    pub vftable: VPtr<dyn ChrSlotBaseVmt, Self>,
}

#[vtable_rs::vtable]
pub trait ChrSlotBaseVmt: FD4SlotInsBaseVmt {
    fn unk28(&mut self) -> bool;

    fn unk30(&mut self) -> bool;
}