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

15 lines
433 B

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using AX.MessageSystem;
using AX.InputSystem;
public class DogBiteCommand : Command
{
public static readonly DogBiteCommand Instance = new DogBiteCommand();
public override void Execute(long gameObjID, CmdArgs arg)
{
base.Execute(gameObjID, arg);
MessageDispatcher.SendMessage(gameObjID, "DOG_BITE_COMMAND", arg);
}
}