Simply klondike (solitaire) developed in c++ (OOP) with the patterns indicated by clean code and the craftmanship rules.
cl /EHsc /c klondike.cpp deck.cpp card.cpp
cl /EHsc klondike.obj deck.obj card.obj /link /out:klondike.exe
start-process build.bat
"tasks": [
{
"taskName": "build",
"type": "shell",
"command": "start-process",
"args": [
"build.bat"
]
}
]