-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
64 lines (56 loc) · 1.3 KB
/
mkdocs.yml
File metadata and controls
64 lines (56 loc) · 1.3 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
site_name: laya docs
site_url: https://radicazz.github.io/laya
site_description: SDL meets modern C++
repo_name: radicazz/laya
repo_url: https://github.com/radicazz/laya/
edit_uri: edit/main/docs/
copyright: Copyright © 2025 cazz
theme:
name: material
palette:
scheme: slate
primary: black
accent: indigo
font:
text: Roboto
code: Roboto Mono
icon:
repo: fontawesome/brands/github
logo: material/language-cpp
features:
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.indexes
- toc.integrate
- content.code.copy
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/radicazz/laya
name: laya on GitHub
generator: false
markdown_extensions:
- toc:
permalink: true
- admonition
- def_list
- tables
- pymdownx.highlight
- pymdownx.superfences
extra_css:
- stylesheets/extra.css
plugins:
- search
nav:
- Getting Started: getting-started.md
- Why Laya: goals.md
- Key Features: features/overview.md
- Features:
- Windows: features/windows.md
- Events: features/events.md
- Rendering: features/rendering.md
- Surfaces: features/surfaces.md
- Textures: features/textures.md
- Message Boxes: features/messagebox.md
- Logging: features/logging.md