Skip to content

Commit 78ea4e3

Browse files
Update 3_understanding_the_code.md (#105)
- set filename to Game1.cs - corrected code blocks with current template contents
1 parent 04da0ed commit 78ea4e3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/getting_started/3_understanding_the_code.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: This tutorial will go over the code that is generated when you star
66
> [!NOTE]
77
> For help with creating a project, please look at the Creating a New Project section of the [Getting Started guide](index.md).
88
9-
Within the `Game.cs` class file, which is the core of any MonoGame project, you will find several critical sections necessary for your game to run:
9+
Within the `Game1.cs` class file, which is the core of any MonoGame project, you will find several critical sections necessary for your game to run:
1010

1111
- `Using statements` - which provide easy access to the various components of MonoGame.
1212

@@ -63,10 +63,11 @@ public Game1()
6363
{
6464
graphics = new GraphicsDeviceManager(this);
6565
Content.RootDirectory = "Content";
66+
IsMouseVisible = true;
6667
}
6768
```
6869

69-
The main game constructor is used to initialize the starting variables. In this case, a new `GraphicsDeviceManager` is created, and the root directory containing the game's content files is set.
70+
The main game constructor is used to initialize the starting variables. In this case, a new `GraphicsDeviceManager` is created, the root directory containing the game's content files is set, and the mouse cursor is set to visible.
7071

7172
## Initialize Method
7273

@@ -116,7 +117,7 @@ The `Update` method is called multiple times per second, and it is used to updat
116117
```csharp
117118
protected override void Draw(GameTime gameTime)
118119
{
119-
graphics.GraphicsDevice.Clear(Color.CornflowerBlue);
120+
GraphicsDevice.Clear(Color.CornflowerBlue);
120121

121122
// TODO: Add your drawing code here
122123

0 commit comments

Comments
 (0)