mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-27 08:59:26 +03:00
10 lines
261 B
Protocol Buffer
10 lines
261 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "BreakoutPhysicalObject.proto";
|
|
// Obf: COLAAGNOBFN
|
|
message BreakoutSpawnPoint {
|
|
uint32 id = 1;
|
|
uint32 brick_suite_id = 2;
|
|
repeated BreakoutPhysicalObject spawned_brick_list = 3;
|
|
}
|