import pygame
import random

class Jabulko(pygame.sprite.Sprite):
    def __init__(self):
        super(Jabulko,self).__init__()
        self.rect = pygame.Rect(random.randint(0,24)*32,random.randint(0,18)*32,32,32)
        self.obraz = pygame.image.load("images/apple.png")
     
     
    
    
    
