mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
13 lines
253 B
C#
13 lines
253 B
C#
using SS14.Shared.Prototypes;
|
|
|
|
namespace SS14.Server.Prototypes
|
|
{
|
|
public sealed class ServerPrototypeManager : PrototypeManager
|
|
{
|
|
public ServerPrototypeManager() : base()
|
|
{
|
|
RegisterIgnore("shader");
|
|
}
|
|
}
|
|
}
|