LeviLamina
Loading...
Searching...
No Matches
SafeZoneBuffer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5enum class SafeZoneBuffer : int {
6 // bitfield representation
7 OuterTop = 1 << 0,
8 OuterRight = 1 << 1,
9 OuterBottom = 1 << 2,
10 OuterLeft = 1 << 3,
11 InnerTop = 1 << 4,
12 InnerRight = 1 << 5,
13 InnerBottom = 1 << 6,
14 InnerLeft = 1 << 7,
15};