Files

18 lines
326 B
C#
Raw Permalink Normal View History

2026-04-20 12:06:34 +08:00
namespace BallKingdomCrush
{
public class ChangeValue<T>
{
public T oldValue;
public T newValue;
public ChangeValue()
{
}
public ChangeValue(T oldValue, T newValue)
{
this.oldValue = oldValue;
this.newValue = newValue;
}
}
}