Hello 3.4 testing

This commit is contained in:
Akbar Yahya
2023-01-28 22:00:48 +08:00
parent 919aed2ecf
commit 741da60f4f
3523 changed files with 50337 additions and 28823 deletions

22
proto/CoopChapter.proto Normal file
View File

@@ -0,0 +1,22 @@
syntax = "proto3";
import "State.proto";
import "CoopCg.proto";
import "CoopReward.proto";
import "CoopPoint.proto";
option java_package = "emu.grasscutter.net.proto";
message CoopChapter {
map<uint32, uint32> seenEndingMap = 12;
repeated uint32 finishDialogList = 5;
repeated CoopCg coopCgList = 11;
repeated CoopReward coopRewardList = 9;
repeated uint32 lockReasonList = 4;
uint32 finishedEndCount = 8;
repeated CoopPoint coopPointList = 7;
State state = 15;
uint32 id = 6;
uint32 totalEndCount = 14;
}