From 3539e2a5e79bd2bc4866f060b2582ed05bc90c57 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michal=20Fla=C5=A1ka?=
<109202734+pilot2254@users.noreply.github.com>
Date: Mon, 23 Feb 2026 22:40:58 +0100
Subject: [PATCH 1/4] docs: add brocode's c++ tutorial to readme.md
---
README.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 7905a5e..db8a638 100644
--- a/README.md
+++ b/README.md
@@ -521,7 +521,8 @@ Tools
This section was written in conjunction with ChatGPT.
-Highly recommend taking a short class of native C++. Here is a video link to ~1h long [video tutorial from Mosh](https://www.youtube.com/watch?v=ZzaPdXTrSb8).
+Highly recommend taking a short class of native C++. Here is a video link to ~1h long [video tutorial from Mosh](https://www.youtube.com/watch?v=ZzaPdXTrSb8).
+But if you'd like to dive deeper into C++ and learn about other stuff (such as memory and pointers which are needed for Unreal Engine), check out this ~6h [video tutorial from BroCode](https://youtu.be/-TkoO8Z07hI).
You can also watch a playlist from [GGameDev about getting started with Unreal Engine C++](https://youtube.com/playlist?list=PLaaDnVlfJwc4Lncf4XTYaTRG_osOk-T0N).
From a986c32fd69784d7b2aaeb4fd49b8a6b6df408c2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michal=20Fla=C5=A1ka?=
<109202734+pilot2254@users.noreply.github.com>
Date: Mon, 23 Feb 2026 22:43:40 +0100
Subject: [PATCH 2/4] docs: mention that Visual Studio is recommended for UE
---
README.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/README.md b/README.md
index db8a638..8c7b288 100644
--- a/README.md
+++ b/README.md
@@ -556,6 +556,8 @@ Popular IDEs used in Unreal Engine and C++ development include:
* [Rider](https://www.jetbrains.com/rider/): Rider is a popular IDE developed by JetBrains, designed for game development, and it offers solid integration with Unreal Engine projects. `Cost`.
+However, Visual Studio is highly recommended for Unreal Engine if you don't want to set up your IDE to support UE, either because you're lazy or because you're a beginner who doesn't want to risk making any mistakes. I highly recommend you to stick with Visual Studio for now.
+
### ⛏️ Tools to help your journey
| From 9a0e36912d1764ac6a1560e7fa8e9a44058f3727 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Fla=C5=A1ka?= <109202734+pilot2254@users.noreply.github.com> Date: Mon, 23 Feb 2026 22:51:09 +0100 Subject: [PATCH 3/4] docs: mention TheCherno's C++ series --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c7b288..b8f5a32 100644 --- a/README.md +++ b/README.md @@ -522,7 +522,8 @@ This section was written in conjunction with ChatGPT. |