@@ -14,13 +14,18 @@ The main goal of this book is to act as a complete guide that can take someone
1414(with the #link(<knowledge >, [#underline[required prerequisite knowledge]]))
1515from zero understanding of decompilation and assembly code to being able to read, understand, and
1616decompile BFBB's C++ source code and corresponding assembly code.
17+ It also aims to answer any and all questions
18+ that you might have related to any aspect of the project.
19+
1720
1821So what does this mean for you?
1922
2023If you read through this book
2124you will learn about BFBB's game engine,
2225the decompilation process,
2326and how C++ code translates to assembly.
27+ You will see examples of how real game functions are decompiled
28+ from nothing but bytes.
2429You will deepen your understanding of computer science,
2530You will gain the knowledge required to be able to create your own custom mods
2631and builds of BFBB.
@@ -103,6 +108,7 @@ or why we are adding instead of dividing,
103108or what the formula means.
104109You just have to solve for $x$ and that's it.
105110When you realize that $x = 3$ you're done.
111+ You can forget about it and move on.
106112
107113The decompilation process is similar.
108114Generally speaking there is only one way to write code
0 commit comments