Remove src directory - simplify project structure

This commit is contained in:
sokol
2026-02-21 20:15:00 +03:00
parent d71529b030
commit a0f6276e5d
5 changed files with 5 additions and 340 deletions

View File

@@ -61,15 +61,12 @@ hexo/
├── server.js # Simple HTTP server for development
├── .gitignore # Git ignore rules
├── jsdom-pkg/ # Local jsdom library copy
├── public/ # Web application files
├── public/ # All application files
│ ├── index.html # Main HTML page with start screen
│ ├── styles.css # Game UI styles
│ ├── game.js # Main game logic and rendering
│ ├── map.js # HexMap module (browser version)
│ ├── map.js # HexMap module
│ └── ai-bot.js # AI bot player logic
├── src/ # Server-side modules
│ ├── index.js # Console demo entry point
│ └── map.js # HexMap module (Node.js version)
└── test/ # Unit tests
└── map.test.js # Map and cell tests
```