LeviLamina
Loading...
Searching...
No Matches
IceGatheringState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cricket {
6
7enum class IceGatheringState : int {
8 KIceGatheringNew = 0,
9 KIceGatheringGathering = 1,
10 KIceGatheringComplete = 2,
11};
12
13}