move proto to submodule
This commit is contained in:
11
proto/CoopPoint.proto
Normal file → Executable file
11
proto/CoopPoint.proto
Normal file → Executable file
@@ -2,10 +2,15 @@ syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "CoopPointState.proto";
|
||||
|
||||
message CoopPoint {
|
||||
enum State {
|
||||
UNSTARTED = 0;
|
||||
STARTED = 1;
|
||||
FINISHED = 2;
|
||||
}
|
||||
|
||||
uint32 id = 1;
|
||||
CoopPointState state = 2;
|
||||
uint32 selfConfidence = 3;
|
||||
State state = 2;
|
||||
uint32 self_confidence = 3;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user