Files
RobustToolbox/SS14.Server/Prototypes/ServerPrototypeManager.cs
2018-07-28 15:33:48 +02:00

13 lines
253 B
C#

using SS14.Shared.Prototypes;
namespace SS14.Server.Prototypes
{
public sealed class ServerPrototypeManager : PrototypeManager
{
public ServerPrototypeManager() : base()
{
RegisterIgnore("shader");
}
}
}