Files
BingoGrassland/Assets/BingoSun/Scripts/ExiteValue.cs
T

21 lines
331 B
C#
Raw Normal View History

2026-04-20 13:49:36 +08:00
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;
}
}
}