GC-Proto/proto/BreakoutActionType.proto

12 lines
385 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// Version: 5.0
enum BreakoutActionType {
BREAKOUT_ACTION_TYPE_ACTION_TYPE_NONE = 0;
BREAKOUT_ACTION_TYPE_ACTION_TYPE_LAUNCH_BALL = 1;
BREAKOUT_ACTION_TYPE_ACTION_TYPE_DESTROY_BALL = 2;
BREAKOUT_ACTION_TYPE_ACTION_TYPE_FALLING_OBJECT = 3;
BREAKOUT_ACTION_TYPE_ACTION_TYPE_MISSILE = 4;
}