LeviLamina
Loading...
Searching...
No Matches
IslandTransition.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock {
6
7enum class IslandTransition : int {
8 Start = 0,
9 Suspend = 1,
10 Resume = 2,
11 Stop = 3,
12};
13
14}