mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-16 10:53:11 +01:00
22 lines
No EOL
647 B
C#
22 lines
No EOL
647 B
C#
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;
|
|
public NinePatch ScrollBarBackground;
|
|
public NinePatch ScrollBarScrollerTexture;
|
|
public Color ScrollBarHoveredColor;
|
|
public IGenericFont Font;
|
|
public float TextScale = 1;
|
|
|
|
}
|
|
} |