Adding first protobuf message exchange

This commit is contained in:
David Négrier 2020-09-17 17:14:47 +02:00
parent 9dd3d4bac8
commit 4b55b54a07
16 changed files with 3185 additions and 14 deletions

6
messages/messages.proto Normal file
View file

@ -0,0 +1,6 @@
syntax = "proto3";
message SetPlayerDetailsMessage {
string name = 1;
repeated string characterLayers = 2;
}