Hey!
I’m developing a basic and modular system to be used accross different projects. With that in mind, I want to separate the Base classes from the actual implemented classes on each project, so I thought of putting every “Base” file inside a folder/module.
So, let’s say I have 3 classes so far:
- BaseGameManager ← Created BaseModule in this class
- BasePlayerManager
- BaseProp
Is there a way I can put these 3 different files all in the same Module but still keep them in separate files?
Thanks in advance!