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

10 lines
125 B
C#
Raw Normal View History

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