LeviLamina
Loading...
Searching...
No Matches
BoolAttributeOperation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace EAS {
6
7enum class BoolAttributeOperation : int {
8 Override = 0,
9 AlphaBlend = 1,
10 And = 2,
11 Nand = 3,
12 Or = 4,
13 Nor = 5,
14 Xor = 6,
15 Xnor = 7,
16};
17
18}