1
0
forked from ndyer/pygame-dvd

added a comment

This commit is contained in:
Nicholas Dyer 2025-01-07 09:16:41 -05:00
parent b96954c5c1
commit ed266511fb
Signed by: ndyer
GPG Key ID: B4FEDEE7298D2503

View File

@ -17,6 +17,7 @@ class SteamLogo(pygame.sprite.Sprite):
y_speed (int): Current speed in the Y axis. y_speed (int): Current speed in the Y axis.
max_x (int): Maximum X position on the screen. max_x (int): Maximum X position on the screen.
max_y (int): Maximum Y position on the screen. max_y (int): Maximum Y position on the screen.
is_mini (bool): Whether or not the logo is a mini (background) logo or not.
""" """
def __init__(self, window_size: tuple, is_mini: bool = False): def __init__(self, window_size: tuple, is_mini: bool = False):