23 lines
580 B
C#
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",
|
|
};
|
|
}
|
|
}
|