commonlibsse_ng\re\b/
BGSActorCellEvent.rs

1use crate::re::BGSActorEvent::BGSActorEvent;
2use crate::re::BSCoreTypes::FormID;
3
4#[repr(C)]
5#[derive(Debug, Clone, PartialEq)]
6pub struct BGSActorCellEvent {
7    pub __base: BGSActorEvent,
8    cellID: FormID,
9    flags: CellFlag,
10}
11const _: () = assert!(core::mem::size_of::<BGSActorCellEvent>() == 0xc);
12
13bitflags::bitflags! {
14    #[derive(Debug, Default, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
15    struct CellFlag: u32 {
16        const ENTER = 0;
17        const Leave = 1;
18    }
19}