Files
tbd-station-14/Content.Server/Entry/IgnoredComponents.cs
2022-03-13 21:11:03 +11:00

25 lines
645 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",
"Icon",
"ClientEntitySpawner",
"CharacterInfo",
"ItemCabinetVisuals",
"HandheldGPS",
"PotencyVisuals"
};
}
}