Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add links in design.md #504

Merged
merged 2 commits into from
Oct 7, 2024
Merged
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
28 changes: 14 additions & 14 deletions docs/design.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,28 +28,28 @@ There are different types of packages in Nevermore. It's useful to reason about
### Utility libraries
Library packages tend to be packages that export one or multiple libraries. These are usually pure utility functions. Here are some sample library packages:

* [Table]
* [Math]
* [RandomUtils]
* [Set]
* [Elo]
* [Table](/api/Table)
* [Math](/api/Math)
* [RandomUtils](/api/RandomUtils)
* [Set](/api/Set)
* [Elo](/api/EloUtils)

### Object utility libraries
These are very similiar to libraries but they tend to export an object, and some supporting objects. These objects are concepts that are useful to learn, and generally exist outside of Roblox (although they may not). These are fundamental building blocks and patterns in Roblox.

* [Octree]
* [Maid]
* [Rx]
* [Promise]
* [Binder]
* [Queue]
* [Octree](/api/Octree)
* [Maid](/api/Maid)
* [Rx](/api/Rx)
* [Promise](/api/Promise)
* [Binder](/api/Binder)
* [Queue](/api/Queue)

### Integration services
There services are primary about providing a contract between two services.

* [GameConfigService]
* [CameraStackService]
* [PlayerDataStoreService]
* [GameConfigService](/api/GameConfigService)
* [CameraStackService](/api/CameraStackService)
* [PlayerDataStoreService](/api/PlayerDataStoreService)



Expand Down
Loading