Skip to content

Instantly share code, notes, and snippets.

package main
import "fmt"
type Unit struct {
ID int
Name string
}
type Player struct {
@kasari
kasari / print_216_colors.go
Last active January 1, 2018 15:27
Print colors map in Output216 mode of termbox-go
package main
import (
"fmt"
"strconv"
"strings"
termbox "github.com/nsf/termbox-go"
)