servatrice/common/pb/game_event_context.proto
Gavin Bisesi 0734b81e6e Remove 'syntax = proto2' from .proto files.
That marker is only recognized by pb3-compatible compilers, meaning that
tools which are otherwise compatible with our files break on them.
Notably, this includes hprotoc (for haskell).
2016-01-14 08:09:40 -05:00

14 lines
347 B
Protocol Buffer

message GameEventContext {
enum ContextType {
READY_START = 1000;
CONCEDE = 1001;
DECK_SELECT = 1002;
UNDO_DRAW = 1003;
MOVE_CARD = 1004;
MULLIGAN = 1005;
PING_CHANGED = 1006;
CONNECTION_STATE_CHANGED = 1007;
SET_SIDEBOARD_LOCK = 1008;
}
extensions 100 to max;
}