From c3849a1ee185a7c042072059fc4b2adb1627dc84 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sun, 25 Aug 2019 19:08:59 +0200 Subject: [PATCH] get rid of this bad implicit operator --- MLEM.Extended/Font/GenericBitmapFont.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/MLEM.Extended/Font/GenericBitmapFont.cs b/MLEM.Extended/Font/GenericBitmapFont.cs index d8389ee..6aa793d 100644 --- a/MLEM.Extended/Font/GenericBitmapFont.cs +++ b/MLEM.Extended/Font/GenericBitmapFont.cs @@ -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); }