Description
Currently, main game logic code is written in single file, which makes the code difficult to maintain, extend and test. It needs modularizing To improve the structure, readability and reusability.
Goals
- Seperate the main game logic code into modules and classes.
- Improve separation of concerns.
- Prepare the code for easier features additions or fixing bugs.
Description
Currently, main game logic code is written in single file, which makes the code difficult to maintain, extend and test. It needs modularizing To improve the structure, readability and reusability.
Goals