Added pipeline information structures.
This commit is contained in:
14
RecrownedGTK/Pipeline/Information/NinePatchInfo.cs
Normal file
14
RecrownedGTK/Pipeline/Information/NinePatchInfo.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user