mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
16 lines
365 B
C#
16 lines
365 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Maths;
|
|
|
|
namespace Robust.Client.GameObjects
|
|
{
|
|
public partial interface IRenderableComponent : IComponent
|
|
{
|
|
int DrawDepth { get; set; }
|
|
float Bottom { get; }
|
|
Box2 LocalAABB { get; }
|
|
Box2 AverageAABB { get; }
|
|
MapId MapID { get; }
|
|
}
|
|
}
|