12 lines
199 B
Protocol Buffer
12 lines
199 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "Reliquary.proto";
|
|
import "Weapon.proto";
|
|
// Obf: OJMNHOEOFAN
|
|
message ShowEquip {
|
|
uint32 item_id = 1;
|
|
oneof detail {
|
|
Reliquary reliquary = 2;
|
|
Weapon weapon = 3;
|
|
}
|
|
}
|