update c# class examples

This commit is contained in:
Hana
2023-01-11 21:03:35 +01:00
parent 33c61914b4
commit 9e90766a92
37 changed files with 144 additions and 121 deletions

View File

@@ -124,7 +124,9 @@ It will connect and fetch a website.
.. code-tab:: csharp
class HTTPTest : SceneTree
using Godot;
public partial class HTTPTest : SceneTree
{
// HTTPClient demo.
// This simple class can make HTTP requests; it will not block, but it needs to be polled.

View File

@@ -48,7 +48,9 @@ Below is all the code we need to make it work. The URL points to an online API m
.. code-tab:: csharp
class HTTPRequestDemo : CanvasLayer
using Godot;
public partial class HTTPRequestDemo : CanvasLayer
{
public override void _Ready()
{