Skip to content

Instantly share code, notes, and snippets.

import pygame
pygame.init()
okno = pygame.display.set_mode((500,500))
back = (66,170,255)
okno.fill(back)
class Area():
def __init__(self, x, y, weight, height, color):