mirror of
https://github.com/GayPizzaSpecifications/voxelotl-engine.git
synced 2025-08-02 13:00:53 +00:00
14 lines
293 B
Swift
14 lines
293 B
Swift
import Foundation
|
|
|
|
Thread.current.qualityOfService = .userInteractive
|
|
|
|
let app = Application(
|
|
delegate: Game(),
|
|
configuration: ApplicationConfiguration(
|
|
frame: Size(1280, 720),
|
|
title: "Voxelotl Demo",
|
|
flags: [ .resizable, .highDPI ],
|
|
vsyncMode: .on(interval: 1)))
|
|
|
|
exit(app.run())
|