How are hand coded sections handled?

Monkey Forums/Monkey Programming/How are hand coded sections handled?

smilertoo(Posted 2012) [#1]
This may have been answered before but I was wondering how monkey handles hand coded sections?

What i mean is, say i have a game i'm going to put on xna and ios, and each requires platform specific sections that i add to the VStudio/Xcode projects...will monkey overwrite it the next time i edit the monkey file to add new features to my game? or can i specify sections/files to not be over written when monkey regenerates the project for each platform.

Thanks


Gerry Quinn(Posted 2012) [#2]
Monkey seems to leave a section at the top of the file intact between builds, but I don't know precisely what the criteria are.

You could probably use modules at a pinch.


Why0Why(Posted 2012) [#3]
Might be cleaner to go the modules route anyway. Have a separate for XNA, iOS, etc. Should be nice and neat.