Initial Release of IGNCore version 2.5
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#
|
||||
# Base class of all modules...
|
||||
# makes accessing fields which exist in all modules easier
|
||||
#
|
||||
class BaseModule:
|
||||
module_name = ""
|
||||
module_dir = ""
|
||||
|
||||
# noinspection DuplicatedCode
|
||||
def inject(self, registry):
|
||||
pass
|
||||
|
||||
def pre_start(self):
|
||||
pass
|
||||
|
||||
def start(self):
|
||||
pass
|
||||
Reference in New Issue
Block a user