18 lines
450 B
C#
18 lines
450 B
C#
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;
|
|
}
|
|
}
|
|
}
|