2026-06-02 11:11:47 +08:00
|
|
|
namespace ZooMatch
|
2026-06-02 10:26:44 +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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|