[server] add session

This commit is contained in:
2020-03-25 21:05:15 +03:00
parent 8e3b9e2830
commit 8da310a6e5
16 changed files with 609 additions and 12 deletions

View File

@@ -0,0 +1,12 @@
syntax = "proto3";
package ru.m.puzzlez.proto.core;
message UserProto {
string uuid = 1;
string name = 2;
}
message GameProto {
int32 id = 1;
}