Files
FreeSR/FreeSR.Proto/AlleyState.cs
2024-01-27 21:06:07 +08:00

13 lines
178 B
C#

namespace FreeSR.Proto
{
using ProtoBuf;
public enum AlleyState
{
ALLEY_STATE_NONE = 0,
ALLEY_EVENT_DOING = 1,
ALLEY_EVENT_FINISH = 2,
ALLEY_EVENT_REWARDED = 3,
}
}