mirror of
https://github.com/GayPizzaSpecifications/voxelotl-engine.git
synced 2025-08-03 05:10:57 +00:00
12 lines
207 B
Swift
12 lines
207 B
Swift
import Darwin
|
|
|
|
let app = Application(
|
|
configuration: ApplicationConfiguration(
|
|
width: 1280,
|
|
height: 720,
|
|
title: "Voxelotl Demo",
|
|
flags: .resizable,
|
|
vsyncMode: .on(interval: 1)))
|
|
|
|
exit(app.run())
|