This repository adopts a Multi-Project Solution structure within Visual Studio. I treat each learning module as an encapsulated project to ensure modularity.
Engineering-Logic-Roadmap/
βββ Engineering-Logic-Roadmap.slnx # Central Workspace Entry Point
βββ README.md # Core Documentation & Progress Tracker
βββ .gitignore # Environment-agnostic filters
β
βββ 05-Algorithms-L2/ # π§© Level 2: Standalone Logic & Math
β βββ 05-Algorithms-L2.vcxproj
β βββ *.cpp # Collection of logic exercises
β
βββ projects/ # π Structured Applications
βββ 05-l2-p1-rock-paper-scissors/ # β Game Project 1
β βββ 05-l2-p1-rps.slnx
β βββ 05-l2-p1-rock-paper-scissors.cpp
β
βββ 13-Bank-System/ # π¦ [Capstone] OOP Project
β βββ ...
β
βββ ...