Files
RedHotRoast-ios/Assets/Scripts/Define/Model/ChangeValue.cs
T

18 lines
321 B
C#
Raw Normal View History

namespace RedHotRoast
2026-04-22 09:52:55 +08:00
{
public class ChangeValue<T>
{
public T oldValue;
public T newValue;
public ChangeValue()
{
}
public ChangeValue(T oldValue, T newValue)
{
this.oldValue = oldValue;
this.newValue = newValue;
}
}
}