Skip to content

Instantly share code, notes, and snippets.

@clooth
Created September 10, 2013 08:57
Show Gist options
  • Select an option

  • Save clooth/6506769 to your computer and use it in GitHub Desktop.

Select an option

Save clooth/6506769 to your computer and use it in GitHub Desktop.
// Available races
type Race string
const (
Protoss Race = "protoss"
Terran Race = "terran"
Zerg Race = "zerg"
)
func (r *Race) iconFileURL() string {
// TODO:
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment