Skip to content

Commit 568d767

Browse files
committed
feat: init
0 parents  commit 568d767

File tree

7 files changed

+40
-0
lines changed

7 files changed

+40
-0
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.md]
13+
indent_style = space
14+
indent_size = 2
15+
trim_trailing_whitespace = false

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# IDE configuration
2+
/.vscode
3+
4+
# Book
5+
book

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Coding Dojo - Gamedev Part 1
2+
3+
Session sur le gamedev, avec un petit space shooter à la clé.
4+
5+
Lien vers le tutoriel: [https://docs.sharingdev.com/coding-dojo/gamedev-part-1/](https://docs.sharingdev.com/coding-dojo/gamedev-part-1/)

book.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[book]
2+
title = "Coding Dojo - Gamedev Part 1"
3+
author = "Denis BOURGE"
4+
description = "Gamedev Part 1"
5+
multilingual = false
6+
src = "src"

src/0-HOME.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Introduction
2+
3+
Bienvenue sur ce Coding Dojo un peu spécial.
4+
Aujourd'hui, on va découvrir le fabuleux monde du gamedev et apprendre à créer un jeu vidéo !

src/1-PREREQUISITES.md

Whitespace-only changes.

src/SUMMARY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Welcome
2+
3+
[Introduction](./0-HOME.md)
4+
5+
- [Pré-requis](./1-PREREQUISITES.md)

0 commit comments

Comments
 (0)