aboutsummaryrefslogtreecommitdiff
path: root/sidebars.js
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-04-06 20:11:26 -0700
committerFuwn <[email protected]>2021-04-06 20:11:26 -0700
commit6e04b1bab644045398b213900b60bf1ac1c0272d (patch)
tree0cc17281bbd67244efc3c23e71297c9cbaa9c0d8 /sidebars.js
parentchore: Create contribution guidelines (diff)
downloadsite-6e04b1bab644045398b213900b60bf1ac1c0272d.tar.xz
site-6e04b1bab644045398b213900b60bf1ac1c0272d.zip
major: Furnish repository
Diffstat (limited to 'sidebars.js')
-rw-r--r--sidebars.js64
1 files changed, 64 insertions, 0 deletions
diff --git a/sidebars.js b/sidebars.js
new file mode 100644
index 0000000..289408d
--- /dev/null
+++ b/sidebars.js
@@ -0,0 +1,64 @@
+module.exports = {
+ docs: [
+ {
+ type: 'category',
+ label: 'Introduction',
+ items: [
+ 'introduction/basis',
+ 'introduction/resources',
+ 'introduction/workflow',
+ 'introduction/contributing',
+
+ // Uncomment in development environment if you would like to view tutorial
+ // Might break somethings though...
+ // 'tutorial/getting-started',
+ // 'tutorial/create-a-page',
+ // 'tutorial/create-a-document',
+ // 'tutorial/create-a-blog-post',
+ // 'tutorial/markdown-features',
+ // 'tutorial/thank-you',
+ ],
+ },
+ {
+ type: 'category',
+ label: 'GammaDocs',
+ items: [
+ 'gammadocs/roomserver/userserver-configuration-options'
+ ]
+ },
+ {
+ type: 'category',
+ label: 'WorldServer Protocol',
+ items: [
+ // 'worldserver-protocol/'
+ 'worldserver-protocol/packet-information',
+ 'worldserver-protocol/network-constants',
+ 'worldserver-protocol/roomserver',
+ 'worldserver-protocol/userserver'
+ ]
+ },
+ {
+ type: 'category',
+ label: 'worlds.jar',
+ items: [
+ {
+ type: 'category',
+ label: 'NET.worlds',
+ items: [
+ {
+ type: 'category',
+ label: 'network',
+ items: [
+ 'worlds-jar/net-worlds/network/objid',
+ 'worlds-jar/net-worlds/network/serveroutputstream',
+ 'worlds-jar/net-worlds/network/netconst',
+ 'worlds-jar/net-worlds/network/netpacket'
+ ]
+ }
+ ]
+ }
+
+ ]
+ }
+ ],
+};