mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-02-04 20:19:24 +03:00
15 lines
482 B
Protocol Buffer
15 lines
482 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
// Version: 5.0
|
||
|
|
||
|
enum IALDLPPFIDE {
|
||
|
IALDLPPFIDE_EnterUgcDungeonNone = 0;
|
||
|
IALDLPPFIDE_EnterUgcDungeonTrialInEditDungeon = 1;
|
||
|
IALDLPPFIDE_EnterUgcDungeonTrialInWorld = 2;
|
||
|
IALDLPPFIDE_EnterUgcDungeonPlay = 3;
|
||
|
IALDLPPFIDE_EnterUgcDungeonOfficial = 4;
|
||
|
IALDLPPFIDE_EnterUgcDungeonByGm = 5;
|
||
|
IALDLPPFIDE_EnterUgcDungeonByEdit = 6;
|
||
|
IALDLPPFIDE_EnterUgcDungeonTrialOneRoom = 7;
|
||
|
}
|