recrownedgtk/RecrownedGTK/AssetsSystem/Information/NinePatchInfo.cs
Harrison d50ede989c Asset loading structure complete.
Loads information from loader.
information creates useable.
Minor folder restructuring.
Untested.
2020-04-17 22:11:16 -05:00

14 lines
495 B
C#

namespace RecrownedGTK.AssetsSystem.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;
}
}
}