recrownedgtk/RecrownedGTK/Pipeline/Information/NinePatchInfo.cs

14 lines
491 B
C#

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;
}
}
}