LeviLamina
Loading...
Searching...
No Matches
AssertSteps.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace DebugUtils {
6
7enum class AssertSteps : int {
8 LogAssert = 0,
9 PresentModal = 1,
10 FireCallbacks = 2,
11 FireTelemetry = 3,
12 UpdateCrashDumpLog = 4,
13 ThrowException = 5,
14 EarlyDebugBreak = 6,
15 Count = 7,
16};
17
18}