Files
tankz/src/common/proto/core.proto
2019-06-04 12:13:27 +03:00

16 lines
236 B
Protocol Buffer

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;
}