1
Fork 0
mirror of https://github.com/Steffo99/stack.git synced 2024-11-26 17:54:21 +00:00
stack/scripts/togglefullscreen.gml

9 lines
148 B
Text
Raw Normal View History

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