You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
246 B

namespace Game
{
public enum ActivityState
{
ActivityNotStarted = 1, //活动未开始
InProgress = 2, //活动开启中
GameplayEnded = 3, //玩法已结束
ActivityEnded = 4, //活动已结束
}
}