Drawn the skeleton code for the structure of the project
This commit is contained in:
10
maze/maze.go
Normal file
10
maze/maze.go
Normal file
@ -0,0 +1,10 @@
|
||||
package maze
|
||||
|
||||
type Maze interface {
|
||||
maze()
|
||||
}
|
||||
|
||||
type SolvedMaze interface {
|
||||
Maze
|
||||
solvedMaze()
|
||||
}
|
Reference in New Issue
Block a user