From 3fcc676cd3b9b3b24a8755612a459d498879b1df Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 9 Aug 2025 10:58:45 -0400 Subject: Added the_butterfly The proto representation of letters has changed, so the C++ tools need to be updated. --- proto/human.proto | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'proto/human.proto') diff --git a/proto/human.proto b/proto/human.proto index 3352518..88aca38 100644 --- a/proto/human.proto +++ b/proto/human.proto @@ -126,15 +126,28 @@ message HumanKeyholder { string path = 2; } +message HumanLetter { + string key = 1; + bool double = 2; + + string path = 3; +} + +message HumanMastery { + string name = 1; + string path = 2; +} + message HumanRoom { string name = 1; string display_name = 2; repeated HumanPanel panels = 3; repeated HumanPainting paintings = 4; - repeated Letter letters = 5; + repeated HumanLetter letters = 5; repeated HumanPort ports = 6; repeated HumanKeyholder keyholders = 7; + repeated HumanMastery masteries = 8; } message IdMappings { -- cgit 1.4.1