Drawn the skeleton code for the structure of the project

This commit is contained in:
Karma Riuk
2023-08-03 21:07:58 +02:00
parent ae8ea353ca
commit 898d8463c8
9 changed files with 95 additions and 0 deletions

10
maze/maze.go Normal file
View File

@ -0,0 +1,10 @@
package maze
type Maze interface {
maze()
}
type SolvedMaze interface {
Maze
solvedMaze()
}