Pārlūkot izejas kodu

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

Fabio Colella 4 gadi atpakaļ
vecāks
revīzija
b0d34cd749
1 mainītis faili ar 3 papildinājumiem un 0 dzēšanām
  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]