Answers for "how to check if the game window is active in monogame"

C#
0

how to check if the game window is active in monogame

if (IsActive)
{
	// The game window is active (or focused).
}
else
{
	// The game window is not active.
}
Posted by: Guest on August-18-2020

Code answers related to "how to check if the game window is active in monogame"

C# Answers by Framework

Browse Popular Code Answers by Language