diff --git a/MLEM/Extensions/SpriteBatchExtensions.cs b/MLEM/Extensions/SpriteBatchExtensions.cs index 602dc0a..0462cc0 100644 --- a/MLEM/Extensions/SpriteBatchExtensions.cs +++ b/MLEM/Extensions/SpriteBatchExtensions.cs @@ -6,7 +6,7 @@ namespace MLEM.Extensions { private static Texture2D blankTexture; - public static Texture2D GetBlankTexture(SpriteBatch batch) { + public static Texture2D GetBlankTexture(this SpriteBatch batch) { if (blankTexture == null) { blankTexture = new Texture2D(batch.GraphicsDevice, 1, 1, false, SurfaceFormat.Color); blankTexture.SetData(new[] {Color.White}); diff --git a/MLEM/MLEM.csproj b/MLEM/MLEM.csproj index 36bac10..47544a2 100644 --- a/MLEM/MLEM.csproj +++ b/MLEM/MLEM.csproj @@ -10,7 +10,7 @@ https://github.com/Ellpeck/MLEM https://github.com/Ellpeck/MLEM https://github.com/Ellpeck/MLEM/blob/master/LICENSE - 1.0.2 + 1.0.3