Skip to content

Commit 9f0c8ef

Browse files
committed
add playground instead of example
1 parent 96bb8bb commit 9f0c8ef

18 files changed

+130
-365
lines changed

.devcontainer/devcontainer.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "GeometryDashAPI",
3+
"image": "mcr.microsoft.com/devcontainers/base:bullseye",
4+
5+
"features": {
6+
"ghcr.io/devcontainers/features/dotnet": {
7+
"version": "8.0",
8+
"additionalVersions": "2.2"
9+
}
10+
},
11+
12+
"customizations": {
13+
"vscode": {
14+
"extensions": [
15+
"ms-dotnettools.csdevkit",
16+
"mhutchie.git-graph"
17+
]
18+
},
19+
"codespaces": {
20+
"openFiles": [
21+
"/Playground/Program.cs"
22+
]
23+
}
24+
}
25+
}

.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "playground",
6+
"type": "coreclr",
7+
"preLaunchTask": "dotnet: build",
8+
"request": "launch",
9+
"program": "${workspaceFolder}/Playground/bin/Debug/net8.0/Playground.dll",
10+
"env": {
11+
"DOTNET_WORKING_DIRECTORY": "${workspaceFolder}"
12+
}
13+
}
14+
]
15+
}

Examples/CustomBlockType.cs

Lines changed: 0 additions & 29 deletions
This file was deleted.

Examples/Examples.csproj

Lines changed: 0 additions & 21 deletions
This file was deleted.

Examples/LoadAndSaveData.cs

Lines changed: 0 additions & 32 deletions
This file was deleted.

Examples/PercentReaderExample.cs

Lines changed: 0 additions & 68 deletions
This file was deleted.

Examples/Program.cs

Lines changed: 0 additions & 58 deletions
This file was deleted.

Examples/README.md

Lines changed: 0 additions & 47 deletions
This file was deleted.

Examples/ServerExample.cs

Lines changed: 0 additions & 88 deletions
This file was deleted.

0 commit comments

Comments
 (0)