Files
Cielonos/Assets/Scripts/SLSUtilities/SLSFramework/General/ICloneable.cs
SoulliesOfficial 7ee2894a63 整合SLSUtilities
2026-01-17 11:35:49 -05:00

10 lines
125 B
C#

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