Files
voxelotl-engine/Sources/Voxelotl/main.swift

14 lines
293 B
Swift
Raw Normal View History

2024-09-02 16:56:08 -04:00
import Foundation
Thread.current.qualityOfService = .userInteractive
2024-08-04 17:42:03 -07:00
2024-08-05 14:01:01 +10:00
let app = Application(
2024-08-13 08:38:21 +10:00
delegate: Game(),
2024-08-05 14:01:01 +10:00
configuration: ApplicationConfiguration(
2024-08-13 21:04:16 +10:00
frame: Size(1280, 720),
2024-08-05 14:01:01 +10:00
title: "Voxelotl Demo",
flags: [ .resizable, .highDPI ],
2024-08-05 17:27:05 +10:00
vsyncMode: .on(interval: 1)))
2024-08-05 14:01:01 +10:00
2024-08-05 11:28:34 +10:00
exit(app.run())