mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
18 lines
513 B
C#
18 lines
513 B
C#
using System;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Maths;
|
|
|
|
namespace Robust.Client.Graphics
|
|
{
|
|
internal interface IRenderHandle
|
|
{
|
|
DrawingHandleScreen DrawingHandleScreen { get; }
|
|
DrawingHandleWorld DrawingHandleWorld { get; }
|
|
|
|
void RenderInRenderTarget(IRenderTarget target, Action a, Color? clearColor);
|
|
|
|
void SetScissor(UIBox2i? scissorBox);
|
|
void DrawEntity(EntityUid entity, Vector2 position, Vector2 scale, Direction? overrideDirection);
|
|
}
|
|
}
|