(Formerly known as system.windowed, which is now obsolete)
readonly static bool System.Windowed;
Returns whether the game is currently running in a window (true) or
full-screen (false).
Example:
if (System.Windowed) {
Display("Game is running in a window!");
}
will display a message if the game is running in a window
|