mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-12 09:04:53 -07:00
deck storage is fully working again, cleaned up some unnecessarily large messages
This commit is contained in:
parent
d4aaf9fff5
commit
0c9a2b061c
13 changed files with 110 additions and 66 deletions
14
common/pb/proto/serverinfo_deckstorage.proto
Normal file
14
common/pb/proto/serverinfo_deckstorage.proto
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
message ServerInfo_DeckStorage_File {
|
||||
optional uint64 creation_time = 1;
|
||||
}
|
||||
|
||||
message ServerInfo_DeckStorage_Folder {
|
||||
repeated ServerInfo_DeckStorage_TreeItem items = 1;
|
||||
}
|
||||
|
||||
message ServerInfo_DeckStorage_TreeItem {
|
||||
optional uint32 id = 1;
|
||||
optional string name = 2;
|
||||
optional ServerInfo_DeckStorage_File file = 10;
|
||||
optional ServerInfo_DeckStorage_Folder folder = 11;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue