Add Godot scripting starting notes

This commit is contained in:
Marcello 2021-09-19 12:10:20 +02:00
parent 8a74634625
commit 76550dfa3c
8 changed files with 243 additions and 16 deletions

View file

@ -160,4 +160,4 @@ protected async void MyButton_Click(object sender, EventArgs e)
// We may actually be on another *thread*, but we have the same ASP.NET request context.
Response.Write("File downloaded!");
}
```
```

View file

@ -2907,4 +2907,4 @@ In this case, the method must also be declared as `static`.
```cs
[DllImport("avifil32.dll")]
private static extern void AVIFileInit();
```
```

View file

@ -12,7 +12,7 @@ of an Rx source demand to be given the next item. Instead, Rx uses a *push* mode
Because Rx implements standard LINQ operators, it's possible to write queries against a live source. Rx goes beyond standard LINQ, adding its own operators that take into account the temporal nature of a live event source.
## Foundamental Interfaces
## Fundamental Interfaces
The two most important types in Rx are the `IObservable<T>` and `IObserver<T>` interfaces.
They are important enough to be in the System namespace. The other parts of Rx are in the `System.Reactive` NuGet package.