Improved variable naming for ninepatch classes.

This commit is contained in:
2018-12-29 00:29:31 -06:00
parent 3bbbd672be
commit eedc083e03
3 changed files with 80 additions and 80 deletions

View File

@@ -9,15 +9,15 @@ namespace RecrownedAthenaeum.Pipeline.NinePatch
public class NinePatchData
{
public string textureName;
public int a, b, c, d;
public int left, right, down, top;
public NinePatchData(string textureName, int a, int b, int c, int d)
public NinePatchData(string textureName, int left, int right, int down, int top)
{
this.textureName = textureName;
this.a = a;
this.b = b;
this.c = c;
this.d = d;
this.left = left;
this.right = right;
this.down = down;
this.top = top;
}
}
}