bmx-ng / maxide

BlitzMax development environment
7 stars 4 forks source link

There should be a way to include other source files #76

Closed clabautdidier closed 2 years ago

clabautdidier commented 2 years ago

Right now everything has to go in a single massive source file. There is the option to put logic in modules, but they need to be in a separate folder, making it harder to exchange the project.

GWRon commented 2 years ago

There are three options to include sources:

include "myfile.bmx" import "myfile.bmx" and import scope.modulename

Maybe you can describe in different words, what you want to achieve exactly.

clabautdidier commented 2 years ago

You're right. I'm sorry, I'm new to BlitzMax and didn't find it in the documentation.

GWRon commented 2 years ago

No worries. Glad you found it.