refactor: add base class for all game objects
This commit is contained in:
@@ -8,6 +8,6 @@ class ConfigurationManager:
|
||||
configuration = []
|
||||
|
||||
@classmethod
|
||||
def load(cls):
|
||||
def load(cls) -> None:
|
||||
with open(CONFIG_FILE_LOCATION, "r") as yaml_file:
|
||||
cls.configuration = yaml.safe_load(yaml_file)
|
||||
Reference in New Issue
Block a user