Toggle the XNA Fullscreen.

This commit is contained in:
feyris-tan 2025-08-11 19:44:06 +02:00
parent 5fdd55f732
commit 554d41ca1e

View File

@ -39,6 +39,15 @@ namespace moe.yo3explorer.skyscraper8.UI.MonoGame
}
ImGui.EndMenu();
}
if (ImGui.BeginMenu("View"))
{
if (ImGui.MenuItem("Toggle Full Screen"))
{
_graphics.ToggleFullScreen();
}
ImGui.EndMenu();
}
ImGui.EndMainMenuBar();
base.ImGuiLayout();