Auto compile protos

This commit is contained in:
HolographicHat
2023-03-30 08:54:50 +08:00
parent ffc0854291
commit 69184fa59d
13 changed files with 77 additions and 2044 deletions

View File

@@ -0,0 +1,21 @@
syntax = "proto3";
option csharp_namespace = "Proto";
message Achievement {
enum Status {
INVALID = 0;
UNFINISHED = 1;
FINISHED = 2;
REWARD_TAKEN = 3;
}
uint32 timestamp = 13;
uint32 current = 2;
uint32 total = 5;
uint32 id = 9;
Status status = 6;
}
message AchievementAllDataNotify {
repeated Achievement list = 15;
}