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 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): |