Closed einthusan closed 3 years ago
okay, found out what the problem is. Your package is not "go get github.com/SolarLune/resolv" as your documentation refers to as. It is missing another "/resolv" at the end because of the way you've structured your repo tree. I recommend you moving your examples into a folder called "examples" where main.go will reside for various examples. Move your actual package to the top level. This is the standard way of doing it. My code should say "import github.com/SolarLune/resolv" and not "import github.com/SolarLune/resolv/resolv" as you currently have.
I've opened #11 restructuring the layout.
Hello, the examples use ebiten now. Thanks for the suggestion~!
You should include an example for Ebiten, and maybe even use that as your default example. Ebiten is a game engine developed entirely in Go with good follower base and very active development by the lead developer. When I try to download your package using "go get", it shows all kinda of messages/errors relating to external dependencies in your examples for raylib and sdl2.