Added pipeline information structures.

This commit is contained in:
2020-02-23 14:48:16 -05:00
parent 1a8f31f7a8
commit 53f45e11dd
2 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
namespace RecrownedGTK.Pipeline.Information {
public struct NinePatchInfo {
public int leftBound, rightBound, bottomBound, topBound;
public string name;
public NinePatchInfo(string name, int leftBound, int rightBound, int bottomBound, int topBound) {
this.leftBound = leftBound;
this.rightBound = rightBound;
this.bottomBound = bottomBound;
this.topBound = topBound;
this.name = name;
}
}
}