├── LICENSE.txt ├── README.md ├── engine.cfg ├── graphics ├── green.png ├── pipe1.png ├── pipe2.png ├── pipe24.png ├── pipe3.png ├── pipe4.png └── tile.png ├── icon.png ├── icon.png.flags ├── maze.png ├── maze.scn ├── pipe.png ├── scripts ├── OPMethod.gd ├── block.gd ├── line.gd ├── maze.gd └── tile.gd └── tile.png /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/README.md -------------------------------------------------------------------------------- /engine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/engine.cfg -------------------------------------------------------------------------------- /graphics/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/graphics/green.png -------------------------------------------------------------------------------- /graphics/pipe1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/graphics/pipe1.png -------------------------------------------------------------------------------- /graphics/pipe2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/graphics/pipe2.png -------------------------------------------------------------------------------- /graphics/pipe24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/graphics/pipe24.png -------------------------------------------------------------------------------- /graphics/pipe3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/graphics/pipe3.png -------------------------------------------------------------------------------- /graphics/pipe4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/graphics/pipe4.png -------------------------------------------------------------------------------- /graphics/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/graphics/tile.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.flags: -------------------------------------------------------------------------------- 1 | gen_mipmaps=false 2 | -------------------------------------------------------------------------------- /maze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/maze.png -------------------------------------------------------------------------------- /maze.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/maze.scn -------------------------------------------------------------------------------- /pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/pipe.png -------------------------------------------------------------------------------- /scripts/OPMethod.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/scripts/OPMethod.gd -------------------------------------------------------------------------------- /scripts/block.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/scripts/block.gd -------------------------------------------------------------------------------- /scripts/line.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/scripts/line.gd -------------------------------------------------------------------------------- /scripts/maze.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/scripts/maze.gd -------------------------------------------------------------------------------- /scripts/tile.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/scripts/tile.gd -------------------------------------------------------------------------------- /tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landroo/GodotMaze/HEAD/tile.png --------------------------------------------------------------------------------