Edit of asset "Rem Send" Accepted

Old/Current New/Edit
Title Rem Send
Description A Remote Procedure Call framework for Godot C#.

Features:
- Call source-generated RPCs with static typing and optimal performance.
- Request and return values from RPCs.
- Send variant-incompatible values with MemoryPack.
- Extra access enum (peer -> authority).
- Fully compatible with async / Tasks.
- Created for use in a real MMORPG.

Example:
```cs
[Rem(RemAccess.Any)]
public void SayWords(List<string> Words) {
foreach (string Word in Words) {
GD.Print(Word);
}
}

// Send SayWords to authority
SendSayWords(1, ["cat", "dog"]);
// Broadcast SayWords to all peers
BroadcastSayWords(["cat", "dog"]);
```
Category Scripts
License MIT MIT
Repository Provider Custom
Repository Url https://github.com/Joy-less/RemSend
Issues Url
Godot version Godot 4.4
Version String 7.11 3.1
Download Commit https://github.com/Joy-less/RemSend/releases/download/v7.11/RemSend.7.11.0.nupkg 07bd405cd4b00ec0d0b3f42e66e58768f95b5e92
Download Url (Computed) https://github.com/Joy-less/RemSend/releases/download/v7.11/RemSend.7.11.0.nupkg 07bd405cd4b00ec0d0b3f42e66e58768f95b5e92
Icon Url https://raw.githubusercontent.com/Joy-less/RemSend/main/Assets/Icon.png