18 lines
318 B
C#
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;
|
|
}
|
|
}
|
|
} |