Initial Commit

This commit is contained in:
Grant Terris
2019-08-04 13:30:46 -07:00
commit c2f29509d1
9 changed files with 448 additions and 0 deletions

17
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "make",
"type": "shell",
"command": "make",
"args": [
"debug"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}