mirror of
https://git.neonteam.dev/amizing/FreeSR.git
synced 2025-03-12 03:36:21 -04:00
18 lines
401 B
C#
18 lines
401 B
C#
namespace FreeSR.Proto
|
|
{
|
|
using ProtoBuf;
|
|
|
|
[ProtoContract]
|
|
public class BuffInfo
|
|
{
|
|
[ProtoMember(6)] public float LifeTime;
|
|
[ProtoMember(2)] public int Level;
|
|
[ProtoMember(3)] public Dictionary<string,float> DynamicValues;
|
|
[ProtoMember(1)] public long AddTimeMs;
|
|
[ProtoMember(14)] public int BaseAvatarId;
|
|
[ProtoMember(12)] public int Count;
|
|
[ProtoMember(4)] public int BuffId;
|
|
}
|
|
|
|
}
|