mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 16:16:46 +00:00
18 lines
353 B
Protocol Buffer
18 lines
353 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
enum InteractType {
|
|
InteractNone = 0;
|
|
InteractPickItem = 1;
|
|
InteractGather = 2;
|
|
InteractOpenChest = 3;
|
|
InteractOpenStatue = 4;
|
|
InteractConsum = 5;
|
|
InteractMpPlayReward = 6;
|
|
InteractView = 7;
|
|
InteractGeneralReward = 8;
|
|
InteractMiracleRing = 9;
|
|
InteractFoundation = 10;
|
|
}
|