Files
RobustToolbox/Robust.Shared/Upload/IGamePrototypeLoadManager.cs
2023-05-20 11:53:05 +10:00

17 lines
339 B
C#

using System;
using Robust.Shared.Serialization;
namespace Robust.Shared.Upload;
public interface IGamePrototypeLoadManager
{
public void Initialize();
public void SendGamePrototype(string prototype);
}
[Serializable, NetSerializable]
public sealed class ReplayPrototypeUploadMsg
{
public string PrototypeData = default!;
}