Oczko is a Windows desktop card game written in C++/CLI with Windows Forms. The project implements a simple blackjack-style experience with a graphical interface for starting a game, placing bets, and playing against the croupier.
- Player setup with starting money and player name
- Graphical menu and game screens built with Windows Forms
- Core game actions: hit, stand, double, and split
- Betting flow with wallet tracking
- Bundled card images and application icon
- C++/CLI
- Windows Forms
- Visual Studio solution/project files (
.sln,.vcxproj) - .NET Framework 4.7.2
main.cpp— Application entry pointMenuForm.handMenuForm.cpp— Start screenGameForm.h— Main game UICore.hppandCore.cpp— Game orchestrationcards/— Card image assetsimg/— Additional images
This repository contains a Visual Studio C++/CLI project and is intended to be built on Windows with Visual Studio and the C++/CLI toolchain installed.
- Open
oczko.slnin Visual Studio. - Select a build configuration such as
Debug|x64orRelease|x64. - Build and run the
oczkoproject from Visual Studio.
- The project could not be built in this Linux-based environment because the required Visual Studio C++ targets are unavailable.
- The solution references
Microsoft.Cpp.Default.props, which requires the Visual Studio MSBuild toolchain on Windows.