Files
ichni_Official/Assets/Scripts/SLSUtilities/General/ICloneable.cs

10 lines
125 B
C#
Raw Normal View History

2026-03-14 03:13:10 -04:00
using UnityEngine;
namespace SLSUtilities.General
{
public interface ICloneable<out T>
{
T Clone();
}
}