From c4f510417f1977951829b06a4fda5e2494fd353f Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Mon, 2 Sep 2024 16:56:08 -0400 Subject: [PATCH] set main thread qos to userInteractive --- Sources/Voxelotl/main.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Sources/Voxelotl/main.swift b/Sources/Voxelotl/main.swift index a6c1ab5..0f20905 100644 --- a/Sources/Voxelotl/main.swift +++ b/Sources/Voxelotl/main.swift @@ -1,4 +1,6 @@ -import Darwin +import Foundation + +Thread.current.qualityOfService = .userInteractive let app = Application( delegate: Game(),