Files
Cielonos/Assets/Scripts/SLSFramework/General/ICloneable.cs
SoulliesOfficial ef7b479712 initial
2025-11-25 08:19:33 -05:00

10 lines
125 B
C#

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