Files
2026-05-28 15:23:36 +08:00

18 lines
318 B
C#

namespace ZooMatch
{
public class ChangeValue<T>
{
public T oldValue;
public T newValue;
public ChangeValue()
{
}
public ChangeValue(T oldValue, T newValue)
{
this.oldValue = oldValue;
this.newValue = newValue;
}
}
}