Files
SoulliesOfficial aee62cd637 大修
2026-03-14 02:30:26 -04:00

10 lines
125 B
C#

using UnityEngine;
namespace SLSUtilities.General
{
public interface ICloneable<out T>
{
T Clone();
}
}