LeviLamina
Loading...
Searching...
No Matches
NativeObjectOwnership.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting::QuickJS {
6
7enum class NativeObjectOwnership : uchar {
8 Empty = 0,
9 Weak = 1,
10 Strong = 2,
11};
12
13}