You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
407 B
14 lines
407 B
2 years ago
|
# -*- coding: utf8 -*-
|
||
|
# Общественное достояние, 2023, Алексей Безбородов (Alexei Bezborodov) <AlexeiBv+mirocod_platform_bot@narod.ru>
|
||
|
|
||
|
class ModuleAgregator:
|
||
|
def __init__(self):
|
||
|
self.m_Modules = {}
|
||
|
|
||
|
def GetModule(a_ModName):
|
||
|
return self.m_Modules[a_ModName]
|
||
|
|
||
|
def AddModule(a_Module):
|
||
|
self.m_Modules[a_Module.GetName()] = a_Module
|
||
|
|