We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i have a code like this for my idie game:
package main import ( "github.com/faiface/pixel" "github.com/faiface/pixel/pixelgl" ) func run() { // all of our code will be fired up from here cfg := pixelgl.WindowConfig{ Title: "Pixel Rocks!", Bounds: pixel.R(0, 0, 1024, 768), } win, err := pixelgl.NewWindow(cfg) if err != nil { panic(err) } for !win.Closed() { win.Update() } } func main() { pixelgl.Run(run) }
But if i build the main.go OR run the file i getting this issue: cannot find package "." in: C:\Go\src\github.com\faiface\pixel\pixelgl
cannot find package "." in: C:\Go\src\github.com\faiface\pixel\pixelgl
i tryed: go get github.com\faiface\pixel\pixelgl and go get github.com\faiface\pixel
go get github.com\faiface\pixel\pixelgl
go get github.com\faiface\pixel
Original issue: faiface/pixel#275
The text was updated successfully, but these errors were encountered:
Original issue was a user environment mistake. Closing.
Sorry, something went wrong.
No branches or pull requests
i have a code like this for my idie game:
But if i build the main.go OR run the file i getting this issue:
cannot find package "." in: C:\Go\src\github.com\faiface\pixel\pixelgl
i tryed:
go get github.com\faiface\pixel\pixelgl
and
go get github.com\faiface\pixel
Original issue: faiface/pixel#275
The text was updated successfully, but these errors were encountered: