partial work on initting protos

This commit is contained in:
iamBadgers
2025-06-07 22:28:16 -07:00
parent 7d13bc0c47
commit a2a51754f7
3 changed files with 349 additions and 4 deletions

View File

@@ -5,7 +5,11 @@ service CharacterManager {
rpc getCharacter(GetCharacterRequest) returns (GetCharacterResponse);
}
message Character {}
message Character {
string PlayerName = 1;
string CharacterName = 2;
repeated string CharacterAlias = 3;
}
message CreateCharacterRequest {}