Files
tbd-station-14/Content.Server/Entry/IgnoredComponents.cs
2022-01-11 18:03:27 +11:00

24 lines
614 B
C#

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