recrownedathenaeum/RecrownedAthenaeum.Pipeline/NinePatch/NinePatchData.cs

18 lines
450 B
C#
Raw Normal View History

2019-01-13 20:22:53 +00:00
namespace RecrownedAthenaeum.Pipeline.NinePatch
{
public class NinePatchData
{
public string textureName;
public int left, right, down, top;
public NinePatchData(string textureName, int left, int right, int down, int top)
{
this.textureName = textureName;
this.left = left;
this.right = right;
this.down = down;
this.top = top;
}
}
}