I coding my game engine on top of Irrlicht, and now i thinking how can build my save and load game file format.
i using irr scene files and Irrlicht standard scene loader.
here follow format that i thinking
Code: Select all
[game file]
[game level missions]
[ mission name="First"]
[Completed="true"]
[missionFile="scene.irr"]
[/mission]
[ mission name="Last"]
[Completed="false"]
[missionFile="scene.irr"]
[/mission]
[/game level missions]
[/game file]
thanks for help.