prevent sleep on Windows when playing

This commit is contained in:
Drew Weymouth
2024-07-18 18:25:14 -07:00
parent 867e2c44b6
commit bc89cc20fc
3 changed files with 39 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
//go:build !windows
package backend
func SetSystemSleepDisabled(disable bool) {
// no-op
}