Browse Source

Add C# `using` dependencies to Your first game (#4553)

Fabio Colella 4 years ago
parent
commit
b0d34cd749
1 changed files with 3 additions and 0 deletions
  1. 3 0
      getting_started/step_by_step/your_first_game.rst

+ 3 - 0
getting_started/step_by_step/your_first_game.rst

@@ -181,6 +181,9 @@ Start by declaring the member variables this object will need:
 
  .. code-tab:: csharp
 
+    using Godot;
+    using System;
+    
     public class Player : Area2D
     {
         [Export]