Add a map renderer (#3613)
Co-authored-by: github-actions <github-actions@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
4b732dda8f
commit
c30c8020e8
20
Content.MapRenderer/Painters/EntityData.cs
Normal file
20
Content.MapRenderer/Painters/EntityData.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user