rrplug 4.2.1

framework for R2Northstar plugins
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! titanfall 2's server related stuff

use std::ffi::c_void;

use crate::offset_functions;

offset_functions! {
   ENTITY_CLASS_VTABLE + EntityClassVtable for WhichDll::Server => {
       cplayer = *const c_void where offset(0x9524F8);
       weaponx = *const c_void where offset(0x98e2b8);
       cplayerdecoy = *const c_void where offset(0x8b4f58);
   }
}