Files
Chef-s-Solitaire_Unity_IOS/Assets/BingoSun/Scripts/ExiteValue.cs
T
2026-06-15 11:34:31 +08:00

21 lines
331 B
C#

namespace BingoBrain.Core
{
public class ExiteValue<T>
{
public T oldValue;
public T newValue;
public ExiteValue()
{
}
public ExiteValue(T oldValue, T newValue)
{
this.oldValue = oldValue;
this.newValue = newValue;
}
}
}