1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-27 06:51:43 +02:00

use sealed on draw in mlem.startup

This commit is contained in:
Ellpeck 2019-12-01 20:25:25 +01:00
parent 3dcc5fa9f5
commit 5b89140df4

View file

@ -51,7 +51,7 @@ namespace MLEM.Startup {
CoroutineHandler.RaiseEvent(CoroutineEvents.Update); CoroutineHandler.RaiseEvent(CoroutineEvents.Update);
} }
protected override void Draw(GameTime gameTime) { protected sealed override void Draw(GameTime gameTime) {
this.UiSystem.DrawEarly(gameTime, this.SpriteBatch); this.UiSystem.DrawEarly(gameTime, this.SpriteBatch);
this.DoDraw(gameTime); this.DoDraw(gameTime);
this.UiSystem.Draw(gameTime, this.SpriteBatch); this.UiSystem.Draw(gameTime, this.SpriteBatch);