11 lines
170 B
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
|
||
|
}
|