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 arcade | |
import pyglet | |
import enum | |
import random | |
class DragRectType(enum.IntFlag): | |
MOVEABLE = 0 | |
RESIZE_TOP = enum.auto() | |
RESIZE_BOTTOM = enum.auto() |
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
# Imports | |
import pygame | |
import sys | |
import random | |
# Initialising | |
pygame.font.init() | |
pygame.init() | |
# Colors |