servatrice/common/pb/command_set_counter.proto
2016-12-11 19:22:39 +01:00

9 lines
241 B
Protocol Buffer

syntax = "proto2";
import "game_commands.proto";
message Command_SetCounter {
extend GameCommand {
optional Command_SetCounter ext = 1020;
}
optional sint32 counter_id = 1 [default = -1];
optional sint32 value = 2;
}