浏览代码

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

Fabio Colella 4 年之前
父节点
当前提交
b0d34cd749
共有 1 个文件被更改,包括 3 次插入0 次删除
  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]