LeviLamina
Loading...
Searching...
No Matches
JSVarRef.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct JSVarRef {
6public:
7 // member variables
8 // NOLINTBEGIN
9 union {
11 struct {
14 uchar mUnkd819b3 : 1;
15 uchar mUnk2df9bc : 1;
17 };
18 };
20 union {
23 };
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 JSVarRef& operator=(JSVarRef const&);
30 JSVarRef(JSVarRef const&);
31 JSVarRef();
32};
Definition JSVarRef.h:5
Definition Alias.h:14