diff --git a/docs/docs/getting-started/1-index.mdx b/docs/docs/getting-started/1-index.mdx index b243584..1432013 100644 --- a/docs/docs/getting-started/1-index.mdx +++ b/docs/docs/getting-started/1-index.mdx @@ -10,23 +10,10 @@ This documentation covers the engine, its packages, and the surrounding usage gu ## Start Here -- [Documentation](documentation.mdx) -- [How to Use](how_to_use.mdx) +- [Documentation](documentation) +- [How to Use](how_to_use) ## Packages -- [Registry](registry/index.mdx) -- [Network](network/index.mdx) -- [Asset Manager](asset-manager/index.mdx) -- [Common](common/index.mdx) -- [Config](config/index.mdx) -- [Core](core/index.mdx) -- [ECS Client](ecs-client/index.mdx) -- [ECS Server](ecs-server/index.mdx) -- [ECS Lib](ecs-lib/index.mdx) -- [Graphics 2D](graphics-2d/index.mdx) -- [Input](input/index.mdx) -- [Music](music/index.mdx) -- [Sound](sound/index.mdx) -- [Network Client](network-client/index.mdx) -- [Network Server](network-server/index.mdx) +- [Registry](../registry) +- [Network](../network) diff --git a/docs/docs/network/index.mdx b/docs/docs/network/index.mdx index b90019a..7c1e3c9 100644 --- a/docs/docs/network/index.mdx +++ b/docs/docs/network/index.mdx @@ -16,8 +16,8 @@ This page describes the engine's networking libraries: `network-server` and `net ## Related Pages -- [Network Client](network-client.mdx) -- [Network Server](network-server.mdx) -- [Packet Framing](packet-framing.mdx) -- [Network Server API](network-server-api.mdx) -- [Network Client API](network-client-api.mdx) +- [Network Client](network-client) +- [Network Server](network-server) +- [Packet Framing](packet-framing) +- [Network Server API](network-server-api) +- [Network Client API](network-client-api) diff --git a/docs/docs/network/network-client.mdx b/docs/docs/network/network-client.mdx index 6cb664d..4bd4061 100644 --- a/docs/docs/network/network-client.mdx +++ b/docs/docs/network/network-client.mdx @@ -55,5 +55,5 @@ const decodedPackets = latestPackets.map((packet) => { ## Notes -- See [Network Client API](network-client-api.mdx) for the full list of available functions. -- For packet framing and terminator semantics, see [Packet Framing](packet-framing.mdx). +- See [Network Client API](network-client-api) for the full list of available functions. +- For packet framing and terminator semantics, see [Packet Framing](packet-framing). diff --git a/docs/docs/network/network-server.mdx b/docs/docs/network/network-server.mdx index 7bdb432..3166d13 100644 --- a/docs/docs/network/network-server.mdx +++ b/docs/docs/network/network-server.mdx @@ -40,5 +40,5 @@ const decodedPackets = firstClientPackets.map((packet) => { ## Notes -- See [Network Server API](network-server-api.mdx) for the full list of available functions. -- For packet framing and terminator semantics, see [Packet Framing](packet-framing.mdx). +- See [Network Server API](network-server-api) for the full list of available functions. +- For packet framing and terminator semantics, see [Packet Framing](packet-framing).