mirror of
https://github.com/Nimac0/SDL_Minigame
synced 2026-01-12 10:13:42 +00:00
ignored docs folder
This commit is contained in:
parent
df6a7ded33
commit
c570c6038d
2
.gitignore
vendored
2
.gitignore
vendored
@ -75,3 +75,5 @@ Desktop.ini
|
|||||||
compile_commands.json
|
compile_commands.json
|
||||||
|
|
||||||
*.puml
|
*.puml
|
||||||
|
|
||||||
|
docs/
|
||||||
|
|||||||
@ -1,54 +0,0 @@
|
|||||||
html {
|
|
||||||
/* primary theme color. This will affect the entire websites color scheme: links, arrows, labels, ... */
|
|
||||||
--primary-color: #bd93f9;
|
|
||||||
--primary-dark-color: #9270e4;
|
|
||||||
--primary-light-color: #9270e4;
|
|
||||||
|
|
||||||
/* page base colors */
|
|
||||||
--page-background-color: #ffffff;
|
|
||||||
--page-foreground-color: #2f4153;
|
|
||||||
--page-secondary-foreground-color: #6f7e8e;
|
|
||||||
|
|
||||||
/* color for all separators on the website: hr, borders, ... */
|
|
||||||
--separator-color: #bd93f965;
|
|
||||||
|
|
||||||
/* border radius for all rounded components. Will affect many components, like dropdowns, memitems, codeblocks, ... */
|
|
||||||
--border-radius-large: 22px;
|
|
||||||
--border-radius-small: 9px;
|
|
||||||
--border-radius-medium: 14px;
|
|
||||||
|
|
||||||
/* default spacings. Most components reference these values for spacing, to provide uniform spacing on the page. */
|
|
||||||
--spacing-small: 8px;
|
|
||||||
--spacing-medium: 14px;
|
|
||||||
--spacing-large: 19px;
|
|
||||||
|
|
||||||
--top-height: 125px;
|
|
||||||
|
|
||||||
...
|
|
||||||
}
|
|
||||||
|
|
||||||
html.dark-mode {
|
|
||||||
color-scheme: dark;
|
|
||||||
|
|
||||||
--primary-color: #bd93f9;
|
|
||||||
--primary-dark-color: #9270e4;
|
|
||||||
--primary-light-color: #9270e4;
|
|
||||||
--primary-lighter-color: #191e21;
|
|
||||||
--primary-lightest-color: #191a1c;
|
|
||||||
|
|
||||||
--page-background-color: #21222c;
|
|
||||||
--page-foreground-color: #d2dbde;
|
|
||||||
--page-secondary-foreground-color: #859399;
|
|
||||||
--separator-color: #3a3246;
|
|
||||||
--side-nav-background: #282a36;
|
|
||||||
--side-nav-foreground: #f8f8f2;
|
|
||||||
--toc-background: #282A36;
|
|
||||||
--searchbar-background: var(--page-background-color);
|
|
||||||
|
|
||||||
...
|
|
||||||
}
|
|
||||||
|
|
||||||
.paramname em {
|
|
||||||
font-weight: 600;
|
|
||||||
color: var(--primary-dark-color);
|
|
||||||
}
|
|
||||||
@ -1,62 +0,0 @@
|
|||||||
compilation_database_dir: ../..
|
|
||||||
output_directory: .
|
|
||||||
diagrams:
|
|
||||||
|
|
||||||
includes:
|
|
||||||
type: include
|
|
||||||
relative_to: ../..
|
|
||||||
glob:
|
|
||||||
- src/*.cpp
|
|
||||||
- include/*.h
|
|
||||||
generate_system_headers: true
|
|
||||||
include:
|
|
||||||
paths:
|
|
||||||
- src
|
|
||||||
- include
|
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'skinparam linetype ortho'
|
|
||||||
|
|
||||||
includes_no_external:
|
|
||||||
type: include
|
|
||||||
relative_to: ../..
|
|
||||||
glob:
|
|
||||||
- src/*.cpp
|
|
||||||
- include/*.h
|
|
||||||
include:
|
|
||||||
paths:
|
|
||||||
- src
|
|
||||||
- include
|
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'skinparam linetype ortho'
|
|
||||||
|
|
||||||
classes:
|
|
||||||
type: class
|
|
||||||
relative_to: ../..
|
|
||||||
glob:
|
|
||||||
- src/*.cpp
|
|
||||||
- include/*.h
|
|
||||||
include:
|
|
||||||
paths:
|
|
||||||
- src
|
|
||||||
- include
|
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'skinparam linetype ortho'
|
|
||||||
|
|
||||||
load_map_example_sequence:
|
|
||||||
type: sequence
|
|
||||||
relative_to: ../..
|
|
||||||
glob:
|
|
||||||
- src/*.cpp
|
|
||||||
- include/*.h
|
|
||||||
include:
|
|
||||||
paths:
|
|
||||||
- src
|
|
||||||
- include
|
|
||||||
start_from:
|
|
||||||
- function: "Map::loadMap(const char *,int,int)"
|
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'skinparam linetype ortho'
|
|
||||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 149 KiB |
@ -1,12 +0,0 @@
|
|||||||
Need [clang-uml](https://clang-uml.github.io/index.html)
|
|
||||||
|
|
||||||
```sh
|
|
||||||
clang-uml
|
|
||||||
clang-uml --add-compile-flag -I/usr/lib/clang/16/include # might need additional flags, example for my machine
|
|
||||||
clang-uml --print-from -n load_map_example_sequence # to get availabel commands for sequence diagram
|
|
||||||
```
|
|
||||||
|
|
||||||
then use plant uml to generate an actual `.svg` vector graphic
|
|
||||||
```sh
|
|
||||||
plantuml -tsvg *.puml
|
|
||||||
```
|
|
||||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 183 KiB |
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 119 KiB |
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 257 KiB |
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 7.3 MiB |
@ -1 +0,0 @@
|
|||||||
Subproject commit df88fe4fdd97714fadfd3ef17de0b4401f804052
|
|
||||||
110
docs/header.html
110
docs/header.html
@ -1,110 +0,0 @@
|
|||||||
<!-- HTML header for doxygen 1.10.0-->
|
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="$langISO">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8" />
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=11" />
|
|
||||||
<meta name="generator" content="Doxygen $doxygenversion" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
||||||
<!--BEGIN PROJECT_NAME-->
|
|
||||||
<title>$projectname: $title</title>
|
|
||||||
<!--END PROJECT_NAME-->
|
|
||||||
<!--BEGIN !PROJECT_NAME-->
|
|
||||||
<title>$title</title>
|
|
||||||
<!--END !PROJECT_NAME-->
|
|
||||||
<!--BEGIN PROJECT_ICON-->
|
|
||||||
<link rel="icon" href="$relpath^$projecticon" type="image/x-icon" />
|
|
||||||
<!--END PROJECT_ICON-->
|
|
||||||
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css" />
|
|
||||||
<!--BEGIN DISABLE_INDEX-->
|
|
||||||
<!--BEGIN FULL_SIDEBAR-->
|
|
||||||
<script type="text/javascript">
|
|
||||||
var page_layout = 1;
|
|
||||||
</script>
|
|
||||||
<!--END FULL_SIDEBAR-->
|
|
||||||
<!--END DISABLE_INDEX-->
|
|
||||||
<script type="text/javascript" src="$relpath^jquery.js"></script>
|
|
||||||
<script type="text/javascript" src="$relpath^dynsections.js"></script>
|
|
||||||
<!--BEGIN COPY_CLIPBOARD-->
|
|
||||||
<script type="text/javascript" src="$relpath^clipboard.js"></script>
|
|
||||||
<!--END COPY_CLIPBOARD-->
|
|
||||||
<script type="text/javascript" src="$relpath^doxygen-awesome-darkmode-toggle.js"></script>
|
|
||||||
<script type="text/javascript">
|
|
||||||
DoxygenAwesomeDarkModeToggle.init()
|
|
||||||
</script>
|
|
||||||
<script type="text/javascript" src="$relpath^doxygen-awesome-fragment-copy-button.js"></script>
|
|
||||||
<script type="text/javascript">
|
|
||||||
DoxygenAwesomeFragmentCopyButton.init()
|
|
||||||
</script>
|
|
||||||
<script type="text/javascript" src="$relpath^doxygen-awesome-paragraph-link.js"></script>
|
|
||||||
<script type="text/javascript">
|
|
||||||
DoxygenAwesomeParagraphLink.init()
|
|
||||||
</script>
|
|
||||||
<script type="text/javascript" src="$relpath^doxygen-awesome-interactive-toc.js"></script>
|
|
||||||
<script type="text/javascript">
|
|
||||||
DoxygenAwesomeInteractiveToc.init()
|
|
||||||
</script>
|
|
||||||
$treeview
|
|
||||||
$search
|
|
||||||
$mathjax
|
|
||||||
$darkmode
|
|
||||||
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
|
|
||||||
$extrastylesheet
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<!--BEGIN DISABLE_INDEX-->
|
|
||||||
<!--BEGIN FULL_SIDEBAR-->
|
|
||||||
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
|
||||||
<!-- do not remove this div, it is closed by doxygen! -->
|
|
||||||
<!--END FULL_SIDEBAR-->
|
|
||||||
<!--END DISABLE_INDEX-->
|
|
||||||
<div id="top">
|
|
||||||
<!-- do not remove this div, it is closed by doxygen! -->
|
|
||||||
<!--BEGIN TITLEAREA-->
|
|
||||||
<div id="titlearea">
|
|
||||||
<table cellspacing="0" cellpadding="0">
|
|
||||||
<tbody>
|
|
||||||
<tr id="projectrow">
|
|
||||||
<!--BEGIN PROJECT_LOGO-->
|
|
||||||
<td id="projectlogo"><img alt="Logo" src="$relpath^$projectlogo" $logosize /></td>
|
|
||||||
<!--END PROJECT_LOGO-->
|
|
||||||
<!--BEGIN PROJECT_NAME-->
|
|
||||||
<td id="projectalign">
|
|
||||||
<div id="projectname">$projectname
|
|
||||||
<!--BEGIN PROJECT_NUMBER--><span id="projectnumber"> $projectnumber</span>
|
|
||||||
<!--END PROJECT_NUMBER-->
|
|
||||||
</div>
|
|
||||||
<!--BEGIN PROJECT_BRIEF-->
|
|
||||||
<div id="projectbrief">$projectbrief</div>
|
|
||||||
<!--END PROJECT_BRIEF-->
|
|
||||||
</td>
|
|
||||||
<!--END PROJECT_NAME-->
|
|
||||||
<!--BEGIN !PROJECT_NAME-->
|
|
||||||
<!--BEGIN PROJECT_BRIEF-->
|
|
||||||
<td>
|
|
||||||
<div id="projectbrief">$projectbrief</div>
|
|
||||||
</td>
|
|
||||||
<!--END PROJECT_BRIEF-->
|
|
||||||
<!--END !PROJECT_NAME-->
|
|
||||||
<!--BEGIN DISABLE_INDEX-->
|
|
||||||
<!--BEGIN SEARCHENGINE-->
|
|
||||||
<!--BEGIN !FULL_SIDEBAR-->
|
|
||||||
<td>$searchbox</td>
|
|
||||||
<!--END !FULL_SIDEBAR-->
|
|
||||||
<!--END SEARCHENGINE-->
|
|
||||||
<!--END DISABLE_INDEX-->
|
|
||||||
</tr>
|
|
||||||
<!--BEGIN SEARCHENGINE-->
|
|
||||||
<!--BEGIN FULL_SIDEBAR-->
|
|
||||||
<tr>
|
|
||||||
<td colspan="2">$searchbox</td>
|
|
||||||
</tr>
|
|
||||||
<!--END FULL_SIDEBAR-->
|
|
||||||
<!--END SEARCHENGINE-->
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
<!--END TITLEAREA-->
|
|
||||||
<!-- end header part -->
|
|
||||||
Loading…
x
Reference in New Issue
Block a user