Files
tbd-station-14/Content.Server/Entry/IgnoredComponents.cs
Fishfish458 6b7379dad0 Add basic handheld GPS (#6896)
Co-authored-by: fishfish458 <fishfish458>
2022-02-26 16:59:20 +11:00

24 lines
615 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"
};
}
}