14 lines
163 B
Protocol Buffer
14 lines
163 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package actions;
|
||
|
|
||
|
message Action {
|
||
|
enum ActionType {
|
||
|
MOVE = 0;
|
||
|
}
|
||
|
|
||
|
ActionType type = 1;
|
||
|
int32 x = 2;
|
||
|
int32 y = 3;
|
||
|
}
|