2020-04-18 03:09:13 +00:00
|
|
|
namespace RecrownedGTK.AssetsSystem.Information {
|
2020-02-23 19:48:16 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|