From 16ab6d60a4dda69fcabe1b1576003e4f2dabd298 Mon Sep 17 00:00:00 2001 From: Tyler Beckman Date: Wed, 4 Dec 2024 18:11:31 -0700 Subject: [PATCH] Add header comment --- .gitignore | 3 ++- main.cpp | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 651437c..ac50d82 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ A6 *.o -.direnv \ No newline at end of file +.direnv +result \ No newline at end of file diff --git a/main.cpp b/main.cpp index fc9c57b..17d83ec 100644 --- a/main.cpp +++ b/main.cpp @@ -1,5 +1,8 @@ /** - Lab 6C - Maze Drawer, a program to parse a .maze text file and display it using SFML. + Assignment 6 - Maze Runner, a program to parse a .maze text file and display it using SFML, + and then solve it using either a breadth- or depth- first search algorithm. I also implemented + both extra-credit pieces, displaying the final path and also showing added but not-yet searched + nodes. @author Tyler Beckman (tyler_beckman@myriation.xyz) @date 12/4/24