Adding protocol buffers to the project with Typescript support

This commit is contained in:
David Négrier 2020-09-16 18:34:24 +02:00
parent 1ccbea30e4
commit 2e8fa8d676
5 changed files with 24 additions and 3 deletions

View file

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