BoSLOO/satsim/modules/module.py

22 lines
461 B
Python
Raw Normal View History

class module:
id_c = 0
def __init__(self, name):
self.fields = {}
2021-07-03 15:37:12 +00:00
self.fields["name"] = name
self.id = module.id_c
module.id_c += 1
def mod_get(self):
print("[!] GET CALLED ON PRIMITIVE MODULE")
def mod_set(self):
print("[!] SET CALLED ON PRIMITIVE MODULE")
def mod_exe(self):
print("[!] EXE CALLED ON PRIMITIVE MODULE")
def mod_not(self):
print("[!] NOT CALLED ON PRIMITIVE MODULE")
def mod_update(self):
pass