Delete unused IRenderableComponent

This commit is contained in:
PJB3005
2025-12-23 18:25:36 +01:00
parent 5e55effc73
commit 9a3aad4630

View File

@@ -1,17 +0,0 @@
using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Map;
using Robust.Shared.Maths;
namespace Robust.Client.GameObjects
{
[Obsolete]
public partial interface IRenderableComponent : IComponent
{
int DrawDepth { get; set; }
float Bottom { get; }
Box2 LocalAABB { get; }
Box2 AverageAABB { get; }
MapId MapID { get; }
}
}