just curious what the difference is...
And also, how to use them properly and run included/imported BMX files in the main file.
And also, how to use them properly and run included/imported BMX files in the main file.
' include.bmx Print "Included"
' include test.bmx Include "include.bmx" Include "include.bmx"
' import.bmx Print "Imported"
' import test.bmx Import "import.bmx" Import "import.bmx"Include just inserts the code where you specify.
Import "data.bmx"
data.init()
Global A=1 Include "Extras.bmx" Print A
A=2