Add gitignore and standard project file

This commit is contained in:
Blizzard Finnegan 2021-12-30 15:35:14 -05:00
parent 007751d1a7
commit a836b93150
9 changed files with 81 additions and 18 deletions

9
testProject/Source/main.cpp Executable file
View file

@ -0,0 +1,9 @@
#include <iostream>
#include "../Header/Pathing.h"
int main()
{
Pathing path;
path.Month(2);
}