I'll make this short and sweet:
Strict
Function Add:Int(a:Int,b:Int)
Return a + b
End Function
How would I turn this into compiled code that I can use in any of my Blitmax programs? I'm basically building my own language extension based on functions and I don't want to mess with any source/compiling the routines after they're done. I've done limited research on mods, but I don't know if what I want to do IS a mod. Thank you for your detailed help. ;)
Strict
Function Add:Int(a:Int,b:Int)
Return a + b
End Function
How would I turn this into compiled code that I can use in any of my Blitmax programs? I'm basically building my own language extension based on functions and I don't want to mess with any source/compiling the routines after they're done. I've done limited research on mods, but I don't know if what I want to do IS a mod. Thank you for your detailed help. ;)