1
Fork 0
mirror of https://github.com/Steffo99/stack.git synced 2025-03-31 04:40:38 +00:00
stack/scripts/togglefullscreen.gml

9 lines
148 B
Text
Raw Normal View History

2013-06-21 23:19:32 +02:00
if window_get_fullscreen()
{
window_set_fullscreen(false);
}
else
{
window_set_fullscreen(true);
}