unity-atoms/Source/Variable/IWithOldValue.cs
2019-05-29 18:52:27 +02:00

8 lines
103 B
C#

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