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