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
Repository Provider Custom
Repository Url https://github.com/Joy-less/RemSend
Issues Url
Godot version Godot 4.4
Version String 8.7 6.3
Download Commit https://github.com/Joy-less/RemSend/releases/download/v8.7/RemSend.8.7.0.nupkg 8bf2ce227a488f4815d1d215b68d172a9970b67a
Download Url (Computed) https://github.com/Joy-less/RemSend/releases/download/v8.7/RemSend.8.7.0.nupkg 8bf2ce227a488f4815d1d215b68d172a9970b67a
Icon Url https://raw.githubusercontent.com/Joy-less/RemSend/main/Assets/Icon.png