aboutsummaryrefslogtreecommitdiff
path: root/sidebars.js
blob: 2ac8bacbdec11af706d5aade8b56a08b3b1b9298 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
module.exports = {
  docs: [
    {
      type: 'category',
      label: 'Introduction',
      items: [
        'introduction/basis',
        'introduction/resources',
        'introduction/workflow',
        'introduction/contributing',
        'introduction/setting_up_a_development_environment',

        // 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: 'Whirl',
      items: [
        'whirl/deploying_setup',
        'whirl/configuration',
      ],
    },
    {
      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',
              ],
            },
          ],
        },
      ],
    },
  ],
};