unity-atoms/Source/Variables/IWithOldValue.cs
2019-05-29 18:56:26 +02:00

8 lines
103 B
C#

namespace UnityAtoms
{
public interface IWithOldValue<T>
{
T OldValue { get; }
}
}