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
import tkinter as tk | |
from tkinter import messagebox | |
import random | |
window = tk.Tk() | |
window.title("Checkers Tavern") | |
image_size = 100 | |
# Board is a list of list of ints | |
# position_coordinates is a tuple of (int, int) |