1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-17 22:58:45 +02:00
MLEM/Tests/Stub/StubStyle.cs

11 lines
175 B
C#
Raw Normal View History

2021-04-01 19:36:56 +02:00
using MLEM.Ui.Style;
namespace Tests.Stub {
public class StubStyle : UiStyle {
public StubStyle() {
this.Font = new StubFont();
}
}
}