import pygame import PygameTextboxes as PyTBs pygame.init() scrn_height = 500 scrn_width = 500 screen = pygame.display.set_mode((scrn_width, scrn_height)) textbox1 = PyTBs.TextBox(200, 200, 100, 50, ...
This project was created to learn the fundamentals of pygame by building a complete 2D game. It features sprite-based rendering, collision detection, sound effects, and background music.