From e9d9da34e86a1e5f0de155bf9086d3e5ff6b2da0 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 7 Aug 2025 13:34:42 -0400 Subject: Protobuf works! Parsing connections --- proto/common.proto | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 proto/common.proto (limited to 'proto/common.proto') diff --git a/proto/common.proto b/proto/common.proto new file mode 100644 index 0000000..eb1d6b5 --- /dev/null +++ b/proto/common.proto @@ -0,0 +1,13 @@ +edition = "2023"; + +package com.fourisland.lingo2_archipelago; + +message Proxy { + string answer = 1; + string path = 2; +} + +message Letter { + string letter = 1; + bool double = 2; +} -- cgit 1.4.1