improved field modification functions added to texture atlas data and ninepatch data classes.

This commit is contained in:
2018-12-07 17:58:59 -06:00
parent b705b2a457
commit cf964cfe76
2 changed files with 28 additions and 2 deletions

View File

@@ -8,8 +8,16 @@ namespace RecrownedAthenaeum.Pipeline.NinePatch
{
public class NinePatchData
{
public string name;
public string bounds;
public string textureName;
public int a, b, c, d;
public NinePatchData(string textureName, int a, int b, int c, int d)
{
this.textureName = textureName;
this.a = a;
this.b = b;
this.c = c;
this.d = d;
}
}
}