feat: revamp colors
This commit is contained in:
@@ -8,8 +8,8 @@ class Well(Entity):
|
||||
WIDTH = 10 # standard tetris well width, should not be changed
|
||||
HEIGHT = 20 # standard tetris well height, should not be changed
|
||||
|
||||
def __init__(self, position: Tuple, color):
|
||||
super().__init__(self.__get_points(position), color)
|
||||
def __init__(self, position: Tuple, color: str, border_color: str):
|
||||
super().__init__(self.__get_points(position), color, border_color)
|
||||
|
||||
def __get_points(self, position: Tuple) -> List:
|
||||
tile_size = ConfigurationManager.configuration["engine"]["tile-size"]
|
||||
|
||||
Reference in New Issue
Block a user