mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
16 lines
320 B
Protocol Buffer
16 lines
320 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: CGJEFNPEPCF
|
|
enum DraftInviteFailReason {
|
|
DRAFT_FAIL_UNKNOWN = 0;
|
|
DRAFT_ACTIVITY_NOT_OPEN = 1;
|
|
DRAFT_ACTIVITY_PLAY_NOT_OPEN = 2;
|
|
DRAFT_SCENE_NOT_MEET = 3;
|
|
DRAFT_WORLD_NOT_MEET = 4;
|
|
DRAFT_PLAY_LIMIT_NOT_MEET = 5;
|
|
}
|
|
|