ball 项目提交
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user