diff --git a/getting_started/step_by_step/scripting_first_script.rst b/getting_started/step_by_step/scripting_first_script.rst index 66e212999..9c2bcc9a8 100644 --- a/getting_started/step_by_step/scripting_first_script.rst +++ b/getting_started/step_by_step/scripting_first_script.rst @@ -101,7 +101,8 @@ the following line of code: .. code-tab:: csharp C# using Godot; - + using System; + public partial class MySprite2D : Sprite2D { } @@ -327,7 +328,8 @@ Here is the complete ``sprite_2d.gd`` file for reference. .. code-tab:: csharp C# using Godot; - + using System; + public partial class MySprite2D : Sprite2D { private int _speed = 400;