2019-08-10 21:37:10 +02:00
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
using MLEM.Font;
|
|
|
|
using MLEM.Textures;
|
|
|
|
|
|
|
|
namespace MLEM.Ui.Style {
|
|
|
|
public class UiStyle {
|
|
|
|
|
|
|
|
public NinePatch ButtonTexture;
|
|
|
|
public NinePatch ButtonHoveredTexture;
|
|
|
|
public Color ButtonHoveredColor;
|
|
|
|
public NinePatch PanelTexture;
|
|
|
|
public NinePatch TextFieldTexture;
|
|
|
|
public NinePatch TextFieldHoveredTexture;
|
|
|
|
public Color TextFieldHoveredColor;
|
2019-08-12 19:44:16 +02:00
|
|
|
public NinePatch ScrollBarBackground;
|
|
|
|
public NinePatch ScrollBarScrollerTexture;
|
|
|
|
public Color ScrollBarHoveredColor;
|
2019-08-10 21:37:10 +02:00
|
|
|
public IGenericFont Font;
|
|
|
|
public float TextScale = 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|