网上演练
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.

22 lines
633 B

using AX.MessageSystem;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace AX.InputSystem
{
/// <summary>
/// 作战部署缩放鼠标中键滚动命令
/// </summary>
public class FireDeployMiddleMouseScrollCommand : Command
{
public static readonly FireDeployMiddleMouseScrollCommand Instance = new FireDeployMiddleMouseScrollCommand();
public override void Execute(long gameObjID, CmdArgs arg)
{
base.Execute(gameObjID, arg);
MessageDispatcher.SendMessage("DEPLOY_MIDDLE_MOUSE_SCROLL_COMMAND", arg);
}
}
}