12 lines
226 B
C#
12 lines
226 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace Content.Shared.Administration;
|
||
|
|
|
||
|
|
public interface IGamePrototypeLoadManager
|
||
|
|
{
|
||
|
|
public void Initialize();
|
||
|
|
public void SendGamePrototype(string prototype);
|
||
|
|
|
||
|
|
event Action GamePrototypeLoaded;
|
||
|
|
}
|