trygetminigame
it's from a different branch but it's nice to have rn
This commit is contained in:
parent
77fb150557
commit
d0d8d8e95e
|
|
@ -1243,6 +1243,17 @@ namespace HeavenStudio
|
||||||
return eventCaller.GetMinigame(name);
|
return eventCaller.GetMinigame(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool TryGetMinigame<T>(out T mg) where T : Minigame
|
||||||
|
{
|
||||||
|
if (minigame is T tempMinigame) {
|
||||||
|
mg = tempMinigame;
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
mg = null;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Color colMain;
|
Color colMain;
|
||||||
public void SetCurrentGame(string game, bool useMinigameColor = true)
|
public void SetCurrentGame(string game, bool useMinigameColor = true)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue