code.witches.io/go/sdl2@v0.1.1/sdl.go (about) 1 package sdl 2 3 // #cgo windows LDFLAGS: -lSDL2 4 // #cgo linux freebsd darwin pkg-config: --static sdl2 5 // #include <SDL2/SDL.h> 6 import "C" 7 8 type Destroyable interface { 9 Destroy() 10 }