Files
DanhengServer-OpenSource/Common/Enums/PlayerStatusEnum.cs
Somebody 87d228eb79 Feature:Asynchronous Operation & Formatting Code
- Now the async operation is enabled!
- Code formatted by Resharper plugin <3
2024-07-22 17:12:03 +08:00

23 lines
372 B
C#

namespace EggLink.DanhengServer.Enums;
public enum PlayerStatusEnum
{
Offline = 0,
Explore = 1,
Rogue = 2,
ChessRogue = 3,
ChessRogueNous = 4,
RogueTourn = 5,
Challenge = 6,
ChallengeStory = 7,
ChallengeBoss = 8,
Raid = 9,
StoryLine = 10,
Activity = 11
}
public enum PlayerSubStatusEnum
{
None = 0,
Battle = 1
}