package input import rl "github.com/gen2brain/raylib-go/raylib" func KeyPressedWithRepeat(key int32) bool { return rl.IsKeyPressed(key) || rl.IsKeyPressedRepeat(key) }