7 lines
189 B
Python
7 lines
189 B
Python
# Class ############################################################################################
|
|
|
|
class PlacedFeature:
|
|
|
|
def __init__(self, gameId:str):
|
|
self.gameId = gameId
|