Skip to content

Commit fe55252

Browse files
author
Wait_What_
committed
Initial commit
0 parents  commit fe55252

File tree

13 files changed

+1839
-0
lines changed

13 files changed

+1839
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/target
2+
/release
3+
TODO.md

.vscode/launch.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "lldb",
6+
"request": "launch",
7+
"name": "Start debugging",
8+
"cargo": {
9+
"args": [
10+
"build"
11+
],
12+
"filter": {
13+
"name": "minesweeper-rs",
14+
"kind": "bin"
15+
}
16+
},
17+
"args": [],
18+
"cwd": "${workspaceFolder}"
19+
}
20+
]
21+
}

0 commit comments

Comments
 (0)