v0.10.5.1

This commit is contained in:
Juan Pablo Arce
2020-09-22 11:31:56 -03:00
parent 44032d0ae0
commit 0002ad2c50
343 changed files with 12276 additions and 5023 deletions
@@ -13,6 +13,8 @@ namespace Barotrauma
private RectTransform prevGuiElementParent;
public Exception LoadException;
public static RoundSummaryScreen Select(Sprite backgroundSprite, RoundSummary roundSummary)
{
var summaryScreen = new RoundSummaryScreen()
@@ -51,5 +53,16 @@ namespace Barotrauma
spriteBatch.End();
}
public override void Update(double deltaTime)
{
base.Update(deltaTime);
if (LoadException != null)
{
var temp = LoadException;
LoadException = null;
throw temp;
}
}
}
}