add small tool that plays a sound when item passing the filter is found in the ground

This commit is contained in:
Héctor Giménez
2023-03-13 22:52:51 +09:00
parent 327f754a65
commit fd93be2b66
6 changed files with 994 additions and 0 deletions

6
go.mod
View File

@@ -3,6 +3,7 @@ module github.com/hectorgimenez/d2go
go 1.19
require (
github.com/faiface/beep v1.1.0
github.com/stretchr/testify v1.8.2
github.com/winlabs/gowin32 v0.0.0-20221003142512-0d265587d3c9
golang.org/x/sys v0.6.0
@@ -10,6 +11,11 @@ require (
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/hajimehoshi/oto v0.7.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8 // indirect
golang.org/x/image v0.0.0-20190227222117-0694c2d4d067 // indirect
golang.org/x/mobile v0.0.0-20190415191353-3e0bab5405d6 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)