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

10 lines
125 B
C#
Raw Normal View History

2025-11-25 08:19:33 -05:00
using UnityEngine;
2026-02-13 09:22:11 -05:00
namespace SLSUtilities.General
2025-11-25 08:19:33 -05:00
{
public interface ICloneable<out T>
{
T Clone();
}
}