From 59167d9276468d6b78f486849eb13b20825b8fbc Mon Sep 17 00:00:00 2001
From: Striven <sg.striven@cutecat.club>
Date: Thu, 11 Sep 2025 20:56:47 +0000
Subject: [PATCH] Update header and link for class version structure
---
04_rendezvous/03_rendezvous_structure.md | 26 ++++++++++++++++++--------
1 files changed, 18 insertions(+), 8 deletions(-)
diff --git a/04_rendezvous/03_rendezvous_structure.md b/04_rendezvous/03_rendezvous_structure.md
index 40e5a33..79a188a 100644
--- a/04_rendezvous/03_rendezvous_structure.md
+++ b/04_rendezvous/03_rendezvous_structure.md
@@ -2,7 +2,7 @@
## Common Structures
-### `Buffer`
+### Structure: `Buffer`
##### Example
```
@@ -18,7 +18,7 @@
The length of the data is `4`, with the bytes being: `.{ 1, 2, 3, 4 }`.
-### `String`
+### Structure: `String`
##### Example
```
@@ -27,13 +27,13 @@
```
##### Parsing
-| Name | Description | Type |
-|--------|-------------------------------------------------------------|---------------------|
-| Buffer | The UTF-8 encoded, null-terminated string data as a buffer. | [`Buffer`](#buffer) |
+| Name | Description | Type |
+|--------|-------------------------------------------------------------|-------------------------------|
+| Buffer | The UTF-8 encoded, null-terminated string data as a buffer. | [`Buffer`](#structure-buffer) |
-Strings in RendezVous are null-terminated [buffers](#buffer) in UTF-8 encoding.
+Strings in RendezVous are null-terminated [buffers](#structure-buffer) in UTF-8 encoding.
-### `List<T>`
+### Structure: `List<T>`
##### Example
```
@@ -48,6 +48,16 @@
| Number of Items | The number of individual items in the list. | `u32` |
| Items | The items in the list. | `T[Number of Items]` |
-### `UUID`
+### Structure: `StationURL`
+
+> [!NOTE]
+> TODO: Example
+
+##### Parsing
+| Name | Description | Type |
+|------|-------------------------|-------------------------------|
+| URL | The URL of the station. | [`String`](#structure-string) |
+
+### Structure: `UUID`
> TODO
\ No newline at end of file
--
Gitblit v1.10.0