mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
11 lines
155 B
Protocol Buffer
11 lines
155 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
enum ChapterState {
|
|
CHAPTER_STATE_NONE = 0;
|
|
CHAPTER_STATE_UNABLE_TO_BEGIN = 1;
|
|
CHAPTER_STATE_BEGIN = 2;
|
|
CHAPTER_STATE_END = 3;
|
|
}
|