mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-25 01:27:06 +03:00
* 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);
|
|
}
|