Skip to content

Project Struture

aniketchavan2211 edited this page Jan 14, 2026 · 1 revision

🧩 Project Structure

The project is organized into modular Rust source files:

  • main.rs β†’ entry point
  • app.rs β†’ main loop + terminal handling
  • game.rs β†’ game rules + state
  • ui.rs β†’ UI rendering
  • config.rs β†’ constants

This modular layout makes it easier to: βœ… add features βœ… fix bugs βœ… collaborate cleanly βœ… test game logic independently

Clone this wiki locally