Files
Bombaleila/Assets/ThunderWire Studio/UHFPS/Content/Scripts/Runtime/Interfaces/ICombinable.cs
2026-03-03 05:27:03 +05:00

9 lines
169 B
C#

namespace UHFPS.Runtime
{
public interface ICombinable
{
void OnCombine();
string OnCombineGetKey();
bool OnCanCombine();
}
}