⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 startstate.cs

📁 嵌入式程序
💻 CS
字号:
using System;
using System.Windows.Forms;
using DiamondPet.LogicLayer.GameStateStartLogic.StartCommand;

namespace DiamondPet.LogicLayer.GameStateStartLogic
{
	/// <summary>
	/// StartState 的摘要说明。
	/// </summary>
	public class StartState
	{
		/// <summary>
		/// 命令父类
		/// </summary>
		protected Command command;

		/// <summary>
		/// 向下命令
		/// </summary>
		protected DownCommand downCommand;

		/// <summary>
		/// 确定命令
		/// </summary>
		protected EnterCommand enterCommand;

		/// <summary>
		/// 向左命令
		/// </summary>
		protected LeftCommand leftCommand;

		/// <summary>
		/// 向右命令
		/// </summary>
		protected RightCommand rightCommand;

		/// <summary>
		/// 向上命令
		/// </summary>
		protected UpCommand upCommand;

		/// <summary>
		/// 管理状态类
		/// </summary>
		public UserLayerStateManager userLayerStateManager;


		public StartState()
		{}

		/// <summary>
		/// 加入命令
		/// </summary>
		/// <param name="key"></param>
		public virtual void AddCommand(Keys key)
		{}

		public virtual void StartStateLogic()
		{}
	}
}

⌨️ 快捷键说明

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