mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-30 22:51:57 -08:00
11 lines
218 B
Protocol Buffer
11 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;
|
|
}
|