Files
mcpacker/mcpacker/format/datapack/configuredfeature/__init__.py
T

16 lines
355 B
Python

from mcpacker.json import JsonBlob
# Class ############################################################################################
class ConfiguredFeature:
def __init__(self, gameId:str):
self.gameId = gameId
def asJsonBlob(self) -> JsonBlob:
return {
"type": self.gameId,
"config": {},
}