recrownedgtk/RecrownedGTK/AssetsSystem/Information/NinePatchInfo.cs

14 lines
495 B
C#
Raw Normal View History

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