1
0
Fork 0

feat: engine audio code

This commit is contained in:
Henrik Hautakoski 2025-09-21 11:07:51 +02:00
parent 1799422591
commit 5860aa69d6
6 changed files with 170 additions and 0 deletions

11
engine/audio/init.go Normal file
View file

@ -0,0 +1,11 @@
package audio
import rl "github.com/gen2brain/raylib-go/raylib"
func Init() {
rl.InitAudioDevice()
}
func Exit() {
rl.CloseAudioDevice()
}