servatrice/common/pb/event_set_counter.proto
2015-08-25 23:40:08 -04:00

10 lines
218 B
Protocol Buffer

syntax = "proto2";
import "game_event.proto";
message Event_SetCounter {
extend GameEvent {
optional Event_SetCounter ext = 2003;
}
optional sint32 counter_id = 1;
optional sint32 value = 2;
}