import pygame import math cell_size = 5 grid_x_count = 70 grid_y_count = 50 def update(): global selected_x global selected_y mouse_x, mouse_y = pygame.mouse.get_pos() selected_x = min(math.floor(mouse_x / cell_size), grid_x_count - 1) selected_y = min(math.floor(mouse_y / cell_size), grid_y_count - 1) def draw(): screen.fill((255, 255, 255)) for y in range(grid_y_count): for x in range(grid_x_count): cell_draw_size = cell_size - 1 if x == selected_x and y == selected_y: color = (0, 255, 255) else: color = (220, 220, 220) screen.draw.filled_rect( Rect( (x * cell_size, y * cell_size), (cell_draw_size, cell_draw_size) ), color=color )