* Call reload protoypes on admin changes Fixes NPCs not working after engine change. * Also chems * other fixes
8 lines
172 B
C#
8 lines
172 B
C#
namespace Content.Shared.Administration;
|
|
|
|
public interface IGamePrototypeLoadManager
|
|
{
|
|
public void Initialize();
|
|
public void SendGamePrototype(string prototype);
|
|
}
|