Created
September 10, 2013 08:57
-
-
Save clooth/6506769 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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