├── .idea ├── .gitignore ├── guess-the-word-bg-tkinter.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Guess_the_word.jpg ├── README.md ├── main.py └── resources ├── icon.ico ├── lose.mp3 └── win.mp3 /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/guess-the-word-bg-tkinter.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ip681/Guess-the-word-tkinter/HEAD/.idea/guess-the-word-bg-tkinter.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ip681/Guess-the-word-tkinter/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ip681/Guess-the-word-tkinter/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ip681/Guess-the-word-tkinter/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ip681/Guess-the-word-tkinter/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Guess_the_word.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ip681/Guess-the-word-tkinter/HEAD/Guess_the_word.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ip681/Guess-the-word-tkinter/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ip681/Guess-the-word-tkinter/HEAD/main.py -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ip681/Guess-the-word-tkinter/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/lose.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ip681/Guess-the-word-tkinter/HEAD/resources/lose.mp3 -------------------------------------------------------------------------------- /resources/win.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ip681/Guess-the-word-tkinter/HEAD/resources/win.mp3 --------------------------------------------------------------------------------