GC-Proto/proto/HuntingOfferData.proto

15 lines
248 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "HuntingOfferState.proto";
import "HuntingPair.proto";
message HuntingOfferData {
HuntingOfferState state = 11;
uint32 cityId = 8;
HuntingPair huntingPair = 13;
}