Please respect the following defined architecture:
├── sources/ │ ├── assets/ │ │ ├── images/ │ │ ├── sounds/ │ │ ├── music/ │ ├── src/ │ │ ├── init.py │ │ ├── main.py │ │ ├── elements/ │ │ │ ├── init.py │ │ │ ├── game_loop.py │ │ │ ├── player/ │ │ │ ├── rooms/ │ │ │ │ ├── office/ │ │ │ │ ├── main.py │ │ │ │ └── test.py │ │ │ │ └── other_room/ │ │ │ └── cryptography_machines/ │ │ │ └── enigma.py │ │ └── utils/ │ │ ├── init.py │ │ ├── input_handler.py │ │ ├── sound_manager.py │ │ └── game_constants.py