mirror of
https://github.com/HolographicHat/Yae.git
synced 2025-12-14 18:38:13 +08:00
Auto compile protos
This commit is contained in:
21
res/proto/AchievementAllDataNotify.proto
Normal file
21
res/proto/AchievementAllDataNotify.proto
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user