16 lines
439 B
C#
16 lines
439 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
/*******************************************************************************
|
|
*Create By CG
|
|
*Function ÃüÁî½Ó¿Ú
|
|
*******************************************************************************/
|
|
namespace ZXK.UTility
|
|
{
|
|
public interface ICommand
|
|
{
|
|
public void Execute();
|
|
public void Execute(string name);
|
|
public void Execute(string name,int score);
|
|
}
|
|
} |