From eb78b1a9592d8bd1234beb18fe8141ef705d97ee Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 12 Jun 2024 07:02:50 -0700 Subject: refactor: use snake case (style guide) --- appear_actor_command.proto | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 appear_actor_command.proto (limited to 'appear_actor_command.proto') diff --git a/appear_actor_command.proto b/appear_actor_command.proto new file mode 100644 index 0000000..718af2d --- /dev/null +++ b/appear_actor_command.proto @@ -0,0 +1,11 @@ +syntax = "proto3"; + +package whirl; + +message AppearActorCommand { + int32 room_id = 1; + int32 x = 2; + int32 y = 3; + int32 z = 4; + int32 direction = 5; +} -- cgit v1.2.3