mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 12:58:33 +01:00
suppress MlemGame deprecation warning for DrawEarly
This commit is contained in:
parent
4854d420e0
commit
a7c6230434
1 changed files with 2 additions and 0 deletions
|
@ -114,7 +114,9 @@ namespace MLEM.Startup {
|
||||||
this.PreDraw?.Invoke(this, gameTime);
|
this.PreDraw?.Invoke(this, gameTime);
|
||||||
CoroutineHandler.RaiseEvent(CoroutineEvents.PreDraw);
|
CoroutineHandler.RaiseEvent(CoroutineEvents.PreDraw);
|
||||||
|
|
||||||
|
#pragma warning disable CS0618
|
||||||
this.UiSystem.DrawEarly(gameTime, this.SpriteBatch);
|
this.UiSystem.DrawEarly(gameTime, this.SpriteBatch);
|
||||||
|
#pragma warning restore CS0618
|
||||||
this.DoDraw(gameTime);
|
this.DoDraw(gameTime);
|
||||||
this.UiSystem.Draw(gameTime, this.SpriteBatch);
|
this.UiSystem.Draw(gameTime, this.SpriteBatch);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue