mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
15 lines
249 B
Protocol Buffer
15 lines
249 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
import "RogueCellState.proto";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message RogueCellInfo {
|
|
uint32 cellConfigId = 8;
|
|
RogueCellState state = 2;
|
|
uint32 cellId = 4;
|
|
uint32 cellType = 3;
|
|
uint32 dungeonId = 1;
|
|
}
|