mirror of
https://github.com/GayPizzaSpecifications/voxelotl-engine.git
synced 2025-08-03 13:11:33 +00:00
12 lines
237 B
Swift
12 lines
237 B
Swift
import Darwin
|
|
|
|
let app = Application(
|
|
delegate: Game(),
|
|
configuration: ApplicationConfiguration(
|
|
frame: Size(1280, 720),
|
|
title: "Voxelotl Demo",
|
|
flags: [ .resizable, .highDPI ],
|
|
vsyncMode: .on(interval: 1)))
|
|
|
|
exit(app.run())
|