Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 4 additions & 17 deletions docs/docs/getting-started/1-index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
10 changes: 5 additions & 5 deletions docs/docs/network/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
4 changes: 2 additions & 2 deletions docs/docs/network/network-client.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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).
4 changes: 2 additions & 2 deletions docs/docs/network/network-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Loading