Files
OldThink/Content.Server/EntryPoint/IgnoredComponents.cs
2021-06-09 22:19:39 +02:00

24 lines
613 B
C#

// ReSharper disable ArrangeTrailingCommaInMultilineLists
namespace Content.Server.EntryPoint
{
public static class IgnoredComponents
{
public static string[] List => new [] {
"ConstructionGhost",
"IconSmooth",
"LowWall",
"ReinforcedWall",
"InteractionOutline",
"MeleeWeaponArcAnimation",
"AnimationsTest",
"ItemStatus",
"Marker",
"Clickable",
"RadiatingLight",
"Icon",
"ClientEntitySpawner",
"ToySingularity"
};
}
}