16 lines
439 B
C#
16 lines
439 B
C#
|
|
using System.Collections;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using UnityEngine;
|
|||
|
|
/*******************************************************************************
|
|||
|
|
*Create By CG
|
|||
|
|
*Function <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӿ<EFBFBD>
|
|||
|
|
*******************************************************************************/
|
|||
|
|
namespace ZXK.UTility
|
|||
|
|
{
|
|||
|
|
public interface ICommand
|
|||
|
|
{
|
|||
|
|
public void Execute();
|
|||
|
|
public void Execute(string name);
|
|||
|
|
public void Execute(string name,int score);
|
|||
|
|
}
|
|||
|
|
}
|