16 lines
236 B
Protocol Buffer
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;
|
|
}
|