Files
tbd-station-14/Content.Server/Entry/IgnoredComponents.cs
metalgearsloth f51248ecaa Melee refactor (#10897)
Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
2022-09-29 15:51:59 +10:00

23 lines
580 B
C#

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