Updated the README.md

This commit is contained in:
2023-11-11 23:21:33 +01:00
parent 1b9b14b042
commit 7c48261947

View File

@ -9,11 +9,15 @@ In diesem Ordner befinden sich alle Übungen, welche wir in der Schule bewältig
## Anwendungen
📂 Games
┗ 📜 [Rock Paper Scissors](rpc.cpp)
┗ 📜 Tic Tac Toe [[Console]](tictactoe.cpp) [[GUI]](ttt-gui.cpp)
┗ 📜 [Hearts](hearts.cpp)
┗ 📜 **[Rock Paper Scissors](rpc.cpp)** - Play rpc against the computer
┗ 📜 **Tic Tac Toe** [[Console]](tictactoe.cpp) [[GUI]](ttt-gui.cpp) - Play Tic Tac Toe against the computer or a
friend
┗ 📜 **[Hearts](hearts.cpp)** - A SDL2 demo of hearts
📂 Miscellaneous
┗ 📜 [Number Guesser](guesser.cpp)
┗ 📜 [Calculator](calculator.cpp)
┗ 📜 [Base 10 to 2](base_10_to_2.cpp)
┗ 📜 Base 2 to 10 [[Static]](base_2_to_10_static.cpp) [[Normal]](base_2_to_10.cpp)
┗ 📜 **[Number Guesser](guesser.cpp)** - Guess a number between 1 and 10
┗ 📜 **[Calculator](calculator.cpp)** - A simple calculator
📂 Math
┗ 📜 **[Base 10 to 2](base_10_to_2.cpp)** - Convert a number from base 10 to base 2
┗ 📜 **Base 2 to 10** [[Static]](base_2_to_10_static.cpp) [[Normal]](base_2_to_10.cpp) - Convert a number from base 2 to base 10
┗ 📜 **[Bitwise Decoder](bitwise_decoder.cpp)** - An inventory system that demonstrates bitwise operations (decoding)
┗ 📜 **[Bitwise Encoder](bitwise_encoder.cpp)** - An inventory system that demonstrates bitwise operations (encoding)