1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-03 16:45:17 +02:00
MLEM/Tests/Stub/StubStyle.cs
2021-04-01 19:36:56 +02:00

11 lines
175 B
C#

using MLEM.Ui.Style;
namespace Tests.Stub {
public class StubStyle : UiStyle {
public StubStyle() {
this.Font = new StubFont();
}
}
}