unity-atoms/Packages/Core/Runtime/Variables/IWithOldValue.cs
2019-10-01 17:27:22 +02:00

8 lines
103 B
C#

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