Explorar o código

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

Fabio Colella %!s(int64=4) %!d(string=hai) anos
pai
achega
b0d34cd749
Modificáronse 1 ficheiros con 3 adicións e 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]