贺州人民医院电子沙盘
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.
 
 
 
 

23 lines
526 B

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using AX.MessageSystem;
namespace AX.InputSystem
{
/// <summary>
/// 删除对象命令
/// </summary>
public class DeleteCommand : Command
{
public static readonly DeleteCommand Instance = new DeleteCommand();
public override void Execute(long gameObjID, CmdArgs arg)
{
base.Execute(gameObjID, arg);
MessageDispatcher.SendMessage("DELETE_COMMAND",arg);
}
}
}