-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
50 lines (48 loc) · 1.33 KB
/
mkdocs.yml
File metadata and controls
50 lines (48 loc) · 1.33 KB
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
site_name: SeaWars Documentation
theme:
name: material
palette:
scheme: slate
primary: teal
accent: cyan
features:
- navigation.tabs
- navigation.sections
- toc.integrate
- content.code.copy
- content.code.annotate
nav:
- Introduction: index.md
- The Arena:
- The Board: arena/board.md
- Game Entities: arena/entities.md
- The Bot: arena/bots.md
- Game Mechanics:
- Perception : mechanics/perception.md
- Actions & Abilities : mechanics/actions_and_abilities.md
- Resolution Rules: mechanics/resolution.md
- Winning the Game: mechanics/win_conditions.md
- Bot Development (SDK):
- Setup & Structure: sdk/setup.md
- Writing Your Bot: sdk/writing_bots.md
- Build Your First Bot: sdk/first_bot.md
- Debugging & Logs: sdk/debugging.md
- API Reference:
- GameAPI: api_reference/game_api.md
- BotController: api_reference/bot_controller.md
- BotContext: api_reference/bot_context.md
- Utilities: api_reference/utilities.md
- Glossary:
- Glossary: glossary/glossary.md
- Changelog: changelog.md
markdown_extensions:
- attr_list
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets