装备系统做了很多
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
[Serializable]
|
||||
public class EquipmentConsumableEntry
|
||||
{
|
||||
public string key;
|
||||
public int count;
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class EquipmentConsumableLedgerPayload
|
||||
{
|
||||
public int version = 1;
|
||||
public long lastUpdatedUtcTicks;
|
||||
public List<EquipmentConsumableEntry> entries = new List<EquipmentConsumableEntry>();
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class EquipmentConsumableLedgerEnvelope
|
||||
{
|
||||
public string payload;
|
||||
public string signature;
|
||||
}
|
||||
Reference in New Issue
Block a user