Files
adventofcode/2019/day20/portal.go
2020-11-03 15:09:13 -06:00

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
}