LeviLamina
Loading...
Searching...
No Matches
FlushOption.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Core {
6
7enum class FlushOption : int {
8 ProcessAll = 0,
9 ProcessRemainingAllowance = 1,
10 Discard = 2,
11};
12
13}