import pygame


class Game:
    def __init__(self, screen: pygame.Surface):
        self.screen = screen

    def draw(self):
        # print("draw")  # Only for testing
        pass

    def run_one_cycle(self):
        # print("run one cycle")  # Only for testing
        pass