goonserver/actions/actions.proto
2024-10-10 10:52:35 +02:00

16 lines
230 B
Protocol Buffer

syntax = "proto3";
package actions;
option go_package = "gitea.boner.be/bdnugget/goonserver/actions";
message Action {
enum ActionType {
MOVE = 0;
}
ActionType type = 1;
int32 x = 2;
int32 y = 3;
}