IsActive
Introduction
Code Example
public void SomeMethod()
{
// EARLY OUT!!!
if(!FlatRedBallServices.Game.IsActive)
{
return;
}
// If we got here that means the game is active, so do things
// logic logic logic logic logic
}Last updated
Was this helpful?