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

14 lines
166 B
Swift
Raw Normal View History

2024-08-04 17:42:03 -07:00
import Foundation
import SDL3
guard SDL_Init(SDL_INIT_VIDEO) >= 0 else {
print("SDL init failed.")
exit(1)
}
defer {
SDL_Quit()
}
print("SDL init success.")