summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/LevelCmdDesc.cs
blob: a99f53b6d3a9ed9c1cf84100653555c3248bbd69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;

namespace XMainClient
{
	internal class LevelCmdDesc
	{
		public LevelCmd cmd = LevelCmd.Level_Cmd_Invalid;

		public List<string> Param = new List<string>();

		public XCmdState state = XCmdState.Cmd_In_Queue;

		public void Reset()
		{
			this.state = XCmdState.Cmd_In_Queue;
		}
	}
}