From 23e6d50826bcb97d308b7668b3ae0c5866af96ab Mon Sep 17 00:00:00 2001 From: Jonathan Meyer Date: Sun, 7 Jan 2018 11:51:59 -0500 Subject: [PATCH] cleanup --- .gitignore | 2 ++ List.cpp | 1 - List.h => src/List.h | 0 Timer.cpp => src/Timer.cpp | 0 Timer.h => src/Timer.h | 0 5 files changed, 2 insertions(+), 1 deletion(-) delete mode 100644 List.cpp rename List.h => src/List.h (100%) rename Timer.cpp => src/Timer.cpp (100%) rename Timer.h => src/Timer.h (100%) diff --git a/.gitignore b/.gitignore index 4581ef2..56b96dc 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,5 @@ *.exe *.out *.app + +.vscode/ diff --git a/List.cpp b/List.cpp deleted file mode 100644 index 04a7e82..0000000 --- a/List.cpp +++ /dev/null @@ -1 +0,0 @@ -#include "List.h" diff --git a/List.h b/src/List.h similarity index 100% rename from List.h rename to src/List.h diff --git a/Timer.cpp b/src/Timer.cpp similarity index 100% rename from Timer.cpp rename to src/Timer.cpp diff --git a/Timer.h b/src/Timer.h similarity index 100% rename from Timer.h rename to src/Timer.h