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

12 lines
302 B
Protocol Buffer

syntax = "proto2";
import "game_event.proto";
message Event_SetCardCounter {
extend GameEvent {
optional Event_SetCardCounter ext = 2015;
}
optional string zone_name = 1;
optional sint32 card_id = 2;
optional sint32 counter_id = 3;
optional sint32 counter_value = 4;
}