mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-26 15:02:54 +08:00
11 lines
208 B
Protocol Buffer
11 lines
208 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
enum ChapterState {
|
|
CHAPTER_STATE_INVALID = 0;
|
|
CHAPTER_STATE_UNABLE_TO_BEGIN = 1;
|
|
CHAPTER_STATE_BEGIN = 2;
|
|
CHAPTER_STATE_END = 3;
|
|
}
|