I want certain functions on module 1 to only be callable within the scope of module 2.
Is there a viable way to do that?
I want certain functions on module 1 to only be callable within the scope of module 2.
Is there a viable way to do that?
Copyright © 2021 Jogjafile Inc.
On the module you want the restricted functions to exist:
On the module you want to call the restricted functions from:
Then call the (reg) function on test2. You should be set after this, you can test the functions on test1 easily to see if it worked.
Thanks Pascal on discord.