initial commit

This commit is contained in:
2024-08-04 17:42:03 -07:00
commit 4522adb657
409 changed files with 323578 additions and 0 deletions

View File

@ -0,0 +1,13 @@
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.")