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 7.11 4.0
Download Commit https://github.com/Joy-less/RemSend/releases/download/v7.11/RemSend.7.11.0.nupkg 2290259a24f167800c9f69f9a12a82b2c839da1f
Download Url (Computed) https://github.com/Joy-less/RemSend/releases/download/v7.11/RemSend.7.11.0.nupkg 2290259a24f167800c9f69f9a12a82b2c839da1f
Icon Url https://raw.githubusercontent.com/Joy-less/RemSend/main/Assets/Icon.png