Skip to content

Commit e324a22

Browse files
Merge pull request #66 from VictorHarri-Chal/48-upgrade-documentation
Merge documentation in main
2 parents 0224234 + 2f6e7db commit e324a22

File tree

266 files changed

+3982
-19050
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

266 files changed

+3982
-19050
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
/build
77
Makefile
88

9+
# Doc
10+
/doc
11+
912
# Executable
1013
/r-type_server
1114
/r-type_client

CMakeLists.txt

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -27,30 +27,30 @@ set(SCREENSROOT ${SRCCLIENT}/screens/)
2727
set(TOOLSROOT ${SRCCLIENT}/tools/)
2828

2929
set(SRC_ECS
30-
${ECSROOT}Entity/Entity.cpp
31-
${ECSROOT}Entity/Entity.hpp
30+
${ECSROOT}entity/Entity.cpp
31+
${ECSROOT}entity/Entity.hpp
3232
${ECSROOT}world.cpp
3333
${ECSROOT}world.hpp
34-
${ECSROOT}System/ISystem.hpp
35-
${ECSROOT}Component/Alive/Alive.cpp
36-
${ECSROOT}Component/Alive/Alive.hpp
37-
${ECSROOT}Component/Collide/Collide.cpp
38-
${ECSROOT}Component/Collide/Collide.hpp
39-
${ECSROOT}Component/Destroyable/Destroyable.cpp
40-
${ECSROOT}Component/Destroyable/Destroyable.hpp
41-
${ECSROOT}Component/Drawable2D/Drawable2D.cpp
42-
${ECSROOT}Component/Drawable2D/Drawable2D.hpp
43-
${ECSROOT}Component/Explodable/Explodable.cpp
44-
${ECSROOT}Component/Explodable/Explodable.hpp
45-
${ECSROOT}Component/Inventory/Inventory.cpp
46-
${ECSROOT}Component/Inventory/Inventory.hpp
47-
${ECSROOT}Component/Sound/Sound.cpp
48-
${ECSROOT}Component/Sound/Sound.hpp
49-
${ECSROOT}Component/Transform/Transform.cpp
50-
${ECSROOT}Component/Transform/Transform.hpp
51-
${ECSROOT}Component/IComponent.hpp
52-
${ECSROOT}System/Draw2D/Draw2D.cpp
53-
${ECSROOT}System/Draw2D/Draw2D.hpp
34+
${ECSROOT}system/ISystem.hpp
35+
${ECSROOT}component/alive/Alive.cpp
36+
${ECSROOT}component/alive/Alive.hpp
37+
${ECSROOT}component/collide/Collide.cpp
38+
${ECSROOT}component/collide/Collide.hpp
39+
${ECSROOT}component/destroyable/Destroyable.cpp
40+
${ECSROOT}component/destroyable/Destroyable.hpp
41+
${ECSROOT}component/drawable2d/Drawable2D.cpp
42+
${ECSROOT}component/drawable2d/Drawable2D.hpp
43+
${ECSROOT}component/explodable/Explodable.cpp
44+
${ECSROOT}component/explodable/Explodable.hpp
45+
${ECSROOT}component/inventory/Inventory.cpp
46+
${ECSROOT}component/inventory/Inventory.hpp
47+
${ECSROOT}component/sound/Sound.cpp
48+
${ECSROOT}component/sound/Sound.hpp
49+
${ECSROOT}component/transform/Transform.cpp
50+
${ECSROOT}component/transform/Transform.hpp
51+
${ECSROOT}component/IComponent.hpp
52+
${ECSROOT}system/draw2d/Draw2D.cpp
53+
${ECSROOT}system/draw2d/Draw2D.hpp
5454
)
5555

5656
set(SRC_SCREENS

0 commit comments

Comments
 (0)