mirror of
https://github.com/GayPizzaSpecifications/voxelotl-engine.git
synced 2025-08-03 13:11:33 +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.")
|