1
0

IgnoredComponents.cs 665 B

12345678910111213141516171819202122232425
  1. // ReSharper disable ArrangeTrailingCommaInMultilineLists
  2. namespace Content.Server.Entry
  3. {
  4. public static class IgnoredComponents
  5. {
  6. public static string[] List => new[] {
  7. "ConstructionGhost",
  8. "IconSmooth",
  9. "InteractionOutline",
  10. "Marker",
  11. "GuidebookControlsTest",
  12. "GuideHelp",
  13. "Clickable",
  14. "Icon",
  15. "CableVisualizer",
  16. "SolutionItemStatus",
  17. "UIFragment",
  18. "PdaBorderColor",
  19. "InventorySlots",
  20. "LightFade",
  21. "HolidayRsiSwap",
  22. "OptionsVisualizer"
  23. };
  24. }
  25. }