GC-Proto/proto/BlockInfo.proto
Akbar Yahya 6ff0b73c63 * Remove bytes.proto
* Remove duplicate files
* Update gc need
2023-01-29 18:42:51 +08:00

10 lines
178 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message BlockInfo {
uint32 blockId = 1;
uint32 dataVersion = 2;
bytes binData = 3;
bool isDirty = 4;
}