Files
FreeSR/FreeSR.Proto/ItemCost.cs
2024-01-27 21:06:07 +08:00

14 lines
232 B
C#

namespace FreeSR.Proto
{
using ProtoBuf;
[ProtoContract]
public class ItemCost
{
[ProtoMember(7)] public PileItem PileItem;
[ProtoMember(10)] public int EquipmentUniqueId;
[ProtoMember(5)] public int RelicUniqueId;
}
}