mirror of
https://github.com/GayPizzaSpecifications/voxelotl-engine.git
synced 2025-08-03 21:21:34 +00:00
14 lines
166 B
Swift
14 lines
166 B
Swift
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.")
|