mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
20 lines
379 B
Protocol Buffer
20 lines
379 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// CmdId: 897
|
|
// Name: DCIIDBFJNMH
|
|
message ProjectorOptionReq {
|
|
// Name: DOENKMNEPFO
|
|
enum DOENKMNEPFO {
|
|
DOENKMNEPFO_PROJECTOR_OP_NONE = 0;
|
|
DOENKMNEPFO_PROJECTOR_OP_CREATE = 1;
|
|
DOENKMNEPFO_PROJECTOR_OP_DESTROY = 2;
|
|
}
|
|
|
|
uint32 op_type = 6;
|
|
uint32 entity_id = 5;
|
|
}
|
|
|