1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-20 12:09:10 +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);
}
protected override void Draw(GameTime gameTime) {
protected sealed override void Draw(GameTime gameTime) {
this.UiSystem.DrawEarly(gameTime, this.SpriteBatch);
this.DoDraw(gameTime);
this.UiSystem.Draw(gameTime, this.SpriteBatch);