Map renderer decal painter (#6754)

* Map renderer decal painter

* not yet

* no conk dick
This commit is contained in:
mirrorcult
2022-02-23 09:23:39 -07:00
committed by GitHub
parent 12616cc4fa
commit ec1e07c832
4 changed files with 178 additions and 15 deletions

View File

@@ -0,0 +1,18 @@
using Content.Shared.Decals;
namespace Content.MapRenderer.Painters;
public sealed class DecalData
{
public DecalData(Decal decal, float x, float y)
{
Decal = decal;
X = x;
Y = y;
}
public Decal Decal;
public float X;
public float Y;
}