syntax = "proto3"; package ru.m.tankz.proto.core; message UserProto { string uuid = 1; string name = 2; } message GameProto { int32 id = 1; string type = 2; int32 level = 3; bool started = 4; }