LeviLamina
Loading...
Searching...
No Matches
RouteHistoryAction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace OreUI {
6
7enum class RouteHistoryAction : int {
8 Push = 0,
9 Replace = 1,
10 GoBackAndReplace = 2,
11 Ignore = 3,
12};
13
14}