21 lines
465 B
C#
21 lines
465 B
C#
using System;
|
|
|
|
namespace ET
|
|
{
|
|
public struct BuffStateInfo : IEquatable<BuffStateInfo>
|
|
{
|
|
public long Id;
|
|
public enum ChangeType { Add, Reduce }
|
|
public ChangeType changeType;
|
|
public bool isBuff;
|
|
public string iconId;
|
|
public string iconDesc;
|
|
public long leastTime;
|
|
public int time;
|
|
|
|
public bool Equals(BuffStateInfo other)
|
|
{
|
|
return Id == other.Id;
|
|
}
|
|
}
|
|
} |