Skip to content

Commit 6e5d702

Browse files
committed
These are the only usings needed
1 parent 379c1c2 commit 6e5d702

File tree

1 file changed

+1
-4
lines changed
  • articles/tutorials/building_2d_games/19_user_interface

1 file changed

+1
-4
lines changed

articles/tutorials/building_2d_games/19_user_interface/index.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -250,13 +250,10 @@ With Gum added and initialized in our game, let's implement UI elements for our
250250
First, open the *TitleScene.cs* file in the game project and add the following using declarations to the top of the `TitleScene` class:
251251
252252
```cs
253+
using System;
253254
using MonoGameGum;
254-
using MonoGameGum.Forms;
255255
using MonoGameGum.Forms.Controls;
256256
using MonoGameGum.GueDeriving;
257-
using MonoGameLibrary;
258-
using MonoGameLibrary.Scenes;
259-
using System;
260257
```
261258
262259
Next, add the following fields:

0 commit comments

Comments
 (0)