mirror of
https://github.com/Steffo99/stack.git
synced 2024-11-22 16:04:19 +00:00
9 lines
163 B
Text
9 lines
163 B
Text
//Attiva e disattiva lo schermo intero.
|
|
if window_get_fullscreen()
|
|
{
|
|
window_set_fullscreen(false);
|
|
}
|
|
else
|
|
{
|
|
window_set_fullscreen(true);
|
|
}
|