A Simple package for writing crash reports.
func LoadTexture(path string){
err := TextureManager.Load(path)
if err == nil{
report := crashreport.Crash("Invalid texture loaded").Include(path)
report.WriteTo("./crashreport.crash")
}
}
$crashreport -browser ./path/to/crash/file.zip