Add comments in UiElement.py
This commit is contained in:
parent
8df63bb607
commit
bb46f56ace
@ -2,6 +2,12 @@ import pygame
|
|||||||
|
|
||||||
|
|
||||||
class UiElement(pygame.sprite.Sprite):
|
class UiElement(pygame.sprite.Sprite):
|
||||||
def __init__(self, rect):
|
rect: pygame.Rect
|
||||||
|
|
||||||
|
def __init__(self, rect: pygame.Rect):
|
||||||
|
"""
|
||||||
|
Creates UiElement object.
|
||||||
|
:param rect: UiElement will be drawn on this rectangle.
|
||||||
|
"""
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.rect = rect
|
self.rect = rect
|
||||||
|
Loading…
Reference in New Issue
Block a user