fork from 1.3
This commit is contained in:
16
FreeSR.Proto/BattleBuff.cs
Normal file
16
FreeSR.Proto/BattleBuff.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace FreeSR.Proto
|
||||
{
|
||||
using ProtoBuf;
|
||||
|
||||
[ProtoContract]
|
||||
public class BattleBuff
|
||||
{
|
||||
[ProtoMember(1)] public int Id;
|
||||
[ProtoMember(2)] public int Level;
|
||||
[ProtoMember(3)] public int OwnerId;
|
||||
[ProtoMember(4)] public int WaveFlag;
|
||||
[ProtoMember(5)] public List<int> TargetIndexList;
|
||||
[ProtoMember(6)] public Dictionary<string, float> DynamicValues;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user