1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-29 03:23:37 +02:00

get rid of this bad implicit operator

This commit is contained in:
Ellpeck 2019-08-25 19:08:59 +02:00
parent 226640ef3a
commit c3849a1ee1

View file

@ -16,10 +16,6 @@ namespace MLEM.Extended.Font {
this.Font = font;
}
public static implicit operator GenericBitmapFont(BitmapFont font) {
return new GenericBitmapFont(font);
}
public Vector2 MeasureString(string text) {
return this.Font.MeasureString(text);
}