mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-02-01 13:42:58 +08:00
10 lines
143 B
Protocol Buffer
10 lines
143 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
enum StoreType {
|
||
|
STORE_NONE = 0;
|
||
|
STORE_PACK = 1;
|
||
|
STORE_DEPOT = 2;
|
||
|
}
|