mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-15 21:46:08 +03:00
14 lines
173 B
Protocol Buffer
14 lines
173 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
|
|
message ItemHint {
|
|
uint32 count = 12;
|
|
uint64 guid = 8;
|
|
uint32 itemId = 13;
|
|
bool isNew = 14;
|
|
}
|