1
0
mirror of https://gitlab.com/YuukiPS/GC-Proto.git synced 2025-04-06 09:06:08 +03:00
GC-Proto/proto/CoopPointState.proto
2023-08-23 01:09:33 +08:00

10 lines
141 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
enum CoopPointState {
Unstarted = 0;
Started = 1;
Finished = 2;
}