summary refs log tree commit diff stats
path: root/proto/common.proto
diff options
context:
space:
mode:
Diffstat (limited to 'proto/common.proto')
-rw-r--r--proto/common.proto13
1 files changed, 13 insertions, 0 deletions
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 @@
1edition = "2023";
2
3package com.fourisland.lingo2_archipelago;
4
5message Proxy {
6 string answer = 1;
7 string path = 2;
8}
9
10message Letter {
11 string letter = 1;
12 bool double = 2;
13}