blob: d0c92b92573bb5cd1a8cc593d1cac46926441a65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
syntax = "proto3";
package whirl;
message TeleportCommand {
int32 room_id = 1;
int32 exit_type = 2;
int32 entry_type = 3;
int32 x = 4;
int32 y = 5;
int32 z = 6;
int32 direction = 7;
}
|