防城港单机
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.
 
 
 
 

24 lines
563 B

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using AX.MessageSystem;
namespace AX.InputSystem
{
/// <summary>
/// 框选画框过程持续中命令
/// </summary>
public class RectDrawingCommand : Command
{
public static readonly RectDrawingCommand Instance = new RectDrawingCommand();
public override void Execute(long gameObjID, CmdArgs arg)
{
base.Execute(gameObjID, arg);
MessageDispatcher.SendMessage("RECTDRAWING_COMMAND", arg);
}
}
}