Files
tbd-station-14/Content.MapRenderer/Painters/EntityData.cs
Javier Guardia Fernández c30c8020e8 Add a map renderer (#3613)
Co-authored-by: github-actions <github-actions@users.noreply.github.com>
2022-01-07 18:54:06 +01:00

21 lines
389 B
C#

using Robust.Client.GameObjects;
namespace Content.MapRenderer.Painters
{
public class EntityData
{
public EntityData(SpriteComponent sprite, float x, float y)
{
Sprite = sprite;
X = x;
Y = y;
}
public SpriteComponent Sprite { get; }
public float X { get; }
public float Y { get; }
}
}