commandqueue.cs

来自「嵌入式程序」· CS 代码 · 共 17 行

CS
17
字号
using System;

namespace DiamondPet.LogicLayer.GameStateStartLogic
{
	/// <summary>
	/// CommandQueue 的摘要说明。
	/// </summary>
	public class CommandQueue : GameQueue
	{
		public CommandQueue() : base()
		{}

		public CommandQueue(int QueueLenth) : base(QueueLenth)
		{}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?