Explorar el Código

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

Fabio Colella hace 4 años
padre
commit
b0d34cd749
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  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]