Log in

View Full Version : Question for Steve about Dweep


BrewKnowC
10-26-2002, 04:55 AM
Hi Steve, I was wondering... did you write your level editor as part of the main dweep program or is it a seperate program that dweep calls when it is needed? Thanks
BC

Dexterity
10-26-2002, 05:27 AM
The level editor is fully integrated into the main program. I have a general CScreen C++ class that has separate subclasses for each individual screen in the game, such as CScreenMainMenu, CScreenLevelSelect, CScreenCredits, etc. So the level editor is just one more subclass: CScreenLevelEditor.

BrewKnowC
10-26-2002, 08:03 AM
ok thanks, thats very smart... i am modelling my current game in a similar 'context-driven' way.