import pygame from pygame .locals import * import sys pygame.init() display = pygame.display.set_mode((300,300)) FPS_CLOCK = pygame.time.Clock() class player: def __init__(self): self.rect = pygame.draw.rect(display,(255,0,0),(100,100,100,100)) player = player() while 1: for event in pygame.event.get(): if event.type == QUIT: pygame.quit() sys.exit() if event.type == pygame.MOUSEBUTTONDOWN: if player.rect.collidepoint(pygame.mouse.get_pos()): print("Mouse cliked on the Player") if event.type == pygame.MOUSEBUTTONUP: if player.rect.collidepoint(pygame.mouse.get_pos()): print("Mouse released on the player") pygame.display.update() FPS_CLOCK.tick(30)