mirror of
https://github.com/GayPizzaSpecifications/cxx-swift-interop.git
synced 2025-08-03 21:21:32 +00:00
10 lines
156 B
Swift
10 lines
156 B
Swift
import Foundation
|
|
import SDL3
|
|
|
|
guard SDL_Init(SDL_INIT_VIDEO) >= 0 else {
|
|
print("SDL init failed.")
|
|
exit(0)
|
|
}
|
|
print("SDL init success.")
|
|
SDL_Quit()
|