prototype module

This commit is contained in:
Laika 2021-07-03 11:37:12 -04:00
parent 9728b5cc98
commit 41356f5922

View file

@ -3,7 +3,7 @@ class module:
id_c = 0
def __init__(self, name):
self.fields = {}
self.fields["name"] = "PRIMITIVE"
self.fields["name"] = name
self.id = module.id_c
module.id_c += 1