""" Slice It Off! - Game where you slice the area where enemies reside to the minimum """ from time import sleep from pathlib import Path import pygame from display import Display from images import Images from game import Level def sliceitoff(): """ The game - It all starts here """ pygame.init() display = Display() Images.load_images( Path(__file__).parent.resolve() ) level1 = Level(display = display, level = 100, score = 10) clock = pygame.time.Clock() dt = 0 while level1.step(dt): dt = clock.tick() pygame.quit() sliceitoff()