10 lines
125 B
C#
10 lines
125 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace SLSUtilities.General
|
||
|
|
{
|
||
|
|
public interface ICloneable<out T>
|
||
|
|
{
|
||
|
|
T Clone();
|
||
|
|
}
|
||
|
|
}
|