using System; using System.Collections.Generic; namespace XMainClient { internal class LevelCmdDesc { public LevelCmd cmd = LevelCmd.Level_Cmd_Invalid; public List Param = new List(); public XCmdState state = XCmdState.Cmd_In_Queue; public void Reset() { this.state = XCmdState.Cmd_In_Queue; } } }