adventofcode/2019/day20/portal.go

11 lines
170 B
Go

package main
import h "git.bullercodeworks.com/brian/adventofcode/helpers"
type Portal struct {
Label string
From h.Coordinate3d
To h.Coordinate3d
Outer bool
}