13 lines
204 B
Protocol Buffer
13 lines
204 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "CustomDungeonBlock.proto";
|
||
|
|
||
|
message CustomDungeonRoom {
|
||
|
repeated CustomDungeonBlock blockList = 7;
|
||
|
uint32 roomId = 3;
|
||
|
}
|