Remove breakable component (#3109)

This commit is contained in:
DrSmugleaf
2021-02-09 14:55:54 +01:00
committed by GitHub
parent 8d7e8f4fc9
commit 2d06990ee3
2 changed files with 0 additions and 11 deletions

View File

@@ -7,7 +7,6 @@ namespace Content.Client
{ {
"Anchorable", "Anchorable",
"AmmoBox", "AmmoBox",
"Breakable",
"Pickaxe", "Pickaxe",
"Interactable", "Interactable",
"CloningPod", "CloningPod",

View File

@@ -1,10 +0,0 @@
using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Damage
{
[RegisterComponent]
public class BreakableComponent : Component
{
public override string Name => "Breakable";
}
}