voxelotl-engine/Sources/Voxelotl/main.swift
2024-09-02 16:56:08 -04:00

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())