23 lines
560 B
23 lines
560 B
2 years ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using AX.MessageSystem;
|
||
|
|
||
|
namespace AX.InputSystem
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 框选画框进入命令
|
||
|
/// </summary>
|
||
|
public class RectDrawEnterCommand : Command
|
||
|
{
|
||
|
public static readonly RectDrawEnterCommand Instance = new RectDrawEnterCommand();
|
||
|
|
||
|
public override void Execute(long gameObjID, CmdArgs arg)
|
||
|
{
|
||
|
base.Execute(gameObjID, arg);
|
||
|
|
||
|
MessageDispatcher.SendMessage("RECTDRAW_ENTER_COMMAND",arg);
|
||
|
}
|
||
|
}
|
||
|
}
|