Files
BallCrushBest_GP/Assets/Scripts/Define/Model/ChangeValue.cs
T

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