Grasscutter/proto/InteractType.proto

18 lines
353 B
Protocol Buffer
Raw Normal View History

2022-04-17 12:43:07 +00:00
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;
}