This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env tclsh | |
# Author: limafresh <https://github.com/limafresh> | |
# License: CC0 <https://creativecommons.org/publicdomain/zero/1.0/> | |
package require Tk | |
proc move_snake {} { | |
global snake snake_direction food score level snake_size width height game_over snake_color bg_color |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env tclsh | |
# Author: limafresh <https://github.com/limafresh> | |
# License: CC0 <https://creativecommons.org/publicdomain/zero/1.0/> | |
package require Tk | |
proc update_timer {} { | |
global is_timer_running remaining_time number_of_twenty | |
if {$is_timer_running} { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Author: limafresh <https://github.com/limafresh> | |
License: CC0 <https://creativecommons.org/publicdomain/zero/1.0/> | |
""" | |
import tkinter as tk | |
from tkinter import filedialog, ttk | |
from PIL import Image, ImageTk, ImageGrab | |
from pyzbar.pyzbar import decode |