9 lines
169 B
C#
9 lines
169 B
C#
namespace UHFPS.Runtime
|
|
{
|
|
public interface ICombinable
|
|
{
|
|
void OnCombine();
|
|
string OnCombineGetKey();
|
|
bool OnCanCombine();
|
|
}
|
|
} |