diff --git a/Doc/Design/ModuleGuide.pdf b/Doc/Design/ModuleGuide.pdf
index b8b4e9f1c43bf7eba92e13d945dac0532fd2861f..d7ff3fe5648053732d499e15365f662db3b7d4d2 100644
Binary files a/Doc/Design/ModuleGuide.pdf and b/Doc/Design/ModuleGuide.pdf differ
diff --git a/Doc/Design/ModuleGuide.synctex.gz b/Doc/Design/ModuleGuide.synctex.gz
new file mode 100644
index 0000000000000000000000000000000000000000..11ddc8887e29ff56ab7c4c890e87d5fac4e54620
Binary files /dev/null and b/Doc/Design/ModuleGuide.synctex.gz differ
diff --git a/Doc/Design/ModuleGuide.tex b/Doc/Design/ModuleGuide.tex
index febc1e4e9e0dd857dcbda09dfa9a812c0b2f0678..933f8fda1b4672734c55c6452fb60cebbcce8a47 100644
--- a/Doc/Design/ModuleGuide.tex
+++ b/Doc/Design/ModuleGuide.tex
@@ -134,7 +134,7 @@ The following design decisions are unlikely to change because they affect many m
     \item [\refstepcounter{mnum} \mthemnum \label{mIF}:] Menu Module
     \item [\refstepcounter{mnum} \mthemnum \label{mOF}:] Model Module
     \item [\refstepcounter{mnum} \mthemnum \label{mM}:] GUI Module
-    \item [\refstepcounter{mnum} \mthemnum \label{mGS}:] Game State Module
+ Module
 \end{description}
 
 \begin{table}[H]
@@ -168,29 +168,33 @@ between requirements and modules is listed in Table \ref{TblRT} and Table \ref{T
 
 \section{Module Decomposition} \label{SecMD}
 
-Modules are decomposed according to the principle of "information hiding" proposed by Parnas. The \emph{Secrets} field in a module decomposition is a brief statement of the design decision hidden by the module. The \emph{Services} field specifies \emph{what} the module will do without documenting \emph{how} to do it. For each module, a suggestion for the implementing software is given under the \emph{Implemented By} title. If the entry is \emph{OS}, this means that the module is provided by the operating system or by standard programming language libraries. Also indicate if the module will be implemented specifically for the software. \\
+Module Decomposition summary TODO \\
 
-Only the leaf modules in the hierarchy have to be implemented. If a dash (\emph{--}) is shown, this means that the module is not a leaf and will not have to be implemented. Whether or not this module is implemented depends on the programming language selected.
+\subsection{System Architecture}
 
-\subsection{Hardware Hiding Modules (\mref{mHH})}
+\subsection{Underlaying Architecture}
+
+\subsection{Leaf-level Decomposition}
+
+\subsection{Summary of Leaf Modules}
+
+\subsubsection{Hardware Hiding Modules (\mref{mHH})}
 
 \begin{description}[leftmargin=1.6cm]
     \item[Secrets:]The algorithms and format structures used to provide an interface between hardware and software.
     \item[Services:]This module provides an interface for users to interact with the software. The module will convert the raw input data from the mouse into data that can be used by controller to update the current game state. The view will also be implemented through this, allowing for users to correctly interact with the software.
-    \item[Includes:] MouseHandler.cs
-    \item[Implemented By:] Mouse, \mref{mBH}
+    \item[Implemented By:] Mouse, MouseHandler, \mref{mBH}
 \end{description}
 
-\subsection{Behaviour-Hiding Module(\mref{mBH})}
+\subsubsection{Behaviour-Hiding Module(\mref{mBH})}
 
 \begin{description}[leftmargin=1.6cm]
     \item[Secrets:]The behavioural process of the software.
     \item[Services:]This module functions as the controller in MVC, and handles all the software decision making of Blaze Brigade. This includes all visible behavior of the system specified in the SRS. Hence any changes to the SRS will hereby result in modifications to this module.
-    \item[Includes:] Game.cs
-    \item[Implemented By:] Computer.
+    \item[Implemented By:] Computer, game.cs
 \end{description}
 
-\subsection{Software Decision Module}
+\subsubsection{Software Decision Module(\mref{mSD})}
 
 \begin{description}[leftmargin=1.6cm]
     \item[Secrets:] The design decisions that determine \emph{how} the software updates.
@@ -198,31 +202,32 @@ Only the leaf modules in the hierarchy have to be implemented. If a dash (\emph{
     \item[Implemented By:] \mref{mBH}
 \end{description}
 
-\subsubsection{GUI Module (\mref{mOF})}
+\subsubsection{GUI Module (\mref{mM})}
 
 \begin{description}[leftmargin=1.6cm]
     \item[Secrets:] How and when what is displayed.
     \item[Services:] This module is the main View in MVC, and displays data to users in the form of graphics according to what the current game state is.
-    \item[Implemented By:] Draw methods
-    \item[Includes] \mref{mGS}, Buttons.cs
+    \item[Implemented By:] Draw methods, \mref{mGS}, Buttons.cs
 \end{description}
 
-\subsubsection{Model Module (\mref{mM})}
+\subsubsection{Menu Module (\mref{mIF})}
 
 \begin{description}[leftmargin=1.6cm]
-    \item[Secrets:] The design decisions that implement the structure of the software.
-    \item[Services:]Includes data structures that update  based on user interaction. 
-    \item[Implemented By:] Game.cs, Graph.cs, Node.cs, Unit.cs, Weapon.cs, Player.cs
+    \item[Secrets:]The navigational structure for different menu options.
+    \item[Services:]This module handles the main menu layout, navigation and controls. 
+    \item[Implemented By:] \mref{mOF}
 \end{description}
 
-\subsubsection{Menu Module (\mref{mGS})}
+\subsubsection{Model Module (\mref{mOF})}
 
 \begin{description}[leftmargin=1.6cm]
-    \item[Secrets:]The navigational structure for different menu options.
-    \item[Services:]This module handles the main menu layout, navigation and controls. 
-    \item[Implemented By:] \mref{mOF}
+    \item[Secrets:] The design decisions that implement the structure of the software.
+    \item[Services:]This module is the main Model in MVC, and contains most the structure of the game. Most of the elements in this module are simply data, with most methods simply being a C\# property (combination of getter and setter).
+    \item[Implemented By:] Game.cs, Graph.cs, Node.cs, Unit.cs, Weapon.cs, Player.cs
 \end{description}
 
+
+
 % =============== Section 6 ===============
 
 \section{Traceability Matrix} \label{SecTM}
diff --git a/src/Blaze-Brigade/Blaze_Brigade/HowToPlay3.cs b/src/Blaze-Brigade/Blaze_Brigade/HowToPlay3.cs
index ecd40e7cbdd06ca871e4e436891faa55b28b9823..dff977a86db63646c365cc01ac7a8ce2d12d5101 100644
--- a/src/Blaze-Brigade/Blaze_Brigade/HowToPlay3.cs
+++ b/src/Blaze-Brigade/Blaze_Brigade/HowToPlay3.cs
@@ -11,7 +11,7 @@ using System.Windows.Forms;
 namespace View
 {
     /// <summary>
-    /// How to Play Menu 3 is opened with next is clicked on HowToPlay Menu 2
+    /// How to Play Menu 3 is opened with next is clicked on HowToPlay2 Menu 
     /// </summary>
     public partial class HowToPlay3 : Form
     {