fcb2bc0d51
parser package, moved the parsing aspect of reader to parser (still have some naughty stuff like WallChar and PathChar in parser but it'll be fixed in next commit)
8 lines
100 B
Go
8 lines
100 B
Go
package reader
|
|
|
|
import "maze-solver/maze"
|
|
|
|
type Reader interface {
|
|
Read() (*maze.RawMaze, error)
|
|
}
|