From 67e646ee3f93ff7a6f28791457f836d397c52e46 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 12 Jun 2024 07:20:20 -0700 Subject: refactor(ShortLocationCommand): clearer delta notation --- commands/short_location_command.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/short_location_command.proto b/commands/short_location_command.proto index 2be8ac1..24037ca 100644 --- a/commands/short_location_command.proto +++ b/commands/short_location_command.proto @@ -3,7 +3,7 @@ syntax = "proto3"; package whirl; message ShortLocationCommand { - int32 dx = 1; - int32 dy = 2; - int32 ddirection = 3; + int32 delta_x = 1; + int32 delta_y = 2; + int32 delta_direction = 3; } -- cgit v1.2.3