27 lines
710 B
C#
27 lines
710 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",
|
|
"DiseaseMachineVisuals",
|
|
"HandheldGPS",
|
|
"PotencyVisuals",
|
|
"PaperVisuals"
|
|
};
|
|
}
|
|
}
|