mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 01:42:29 +00:00
16 lines
253 B
C
16 lines
253 B
C
|
|
#ifndef FRAMESCRIPT_OBJECT_H
|
||
|
|
#define FRAMESCRIPT_OBJECT_H
|
||
|
|
|
||
|
|
#include "system/types.h"
|
||
|
|
|
||
|
|
DECLARE_STRUCT(FrameScript_Object);
|
||
|
|
|
||
|
|
struct FrameScript_Object {
|
||
|
|
void** v_vtable;
|
||
|
|
int32_t lua_registered;
|
||
|
|
int32_t lua_objectRef;
|
||
|
|
int32_t m_onEvent;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|