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