voxelotl-engine/Sources/Voxelotl/main.swift

14 lines
293 B
Swift
Raw Normal View History

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