adventofcode/2019/day20/portal.go

11 lines
170 B
Go
Raw Normal View History

2020-11-03 21:09:13 +00:00
package main
import h "git.bullercodeworks.com/brian/adventofcode/helpers"
type Portal struct {
Label string
From h.Coordinate3d
To h.Coordinate3d
Outer bool
}