8 lines
195 B
Python
8 lines
195 B
Python
# Class ############################################################################################
|
|
|
|
class BlockStateProvider:
|
|
|
|
def __init__(self, gameId:str):
|
|
self.gameId = gameId
|
|
|