diff options
Diffstat (limited to 'commands/appear_actor_command.proto')
| -rw-r--r-- | commands/appear_actor_command.proto | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/commands/appear_actor_command.proto b/commands/appear_actor_command.proto new file mode 100644 index 0000000..718af2d --- /dev/null +++ b/commands/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; +} |