Files
RobustToolbox/Robust.Client/Upload/GamePrototypeLoadManager.cs
2023-06-19 03:23:46 +10:00

12 lines
312 B
C#

using Robust.Shared.Upload;
namespace Robust.Client.Upload;
public sealed class GamePrototypeLoadManager : SharedPrototypeLoadManager
{
public override void SendGamePrototype(string prototype)
{
NetManager.ClientSendMessage(new GamePrototypeLoadMessage { PrototypeData = prototype });
}
}