/**
* @param args the command line arguments
*/
public static void main(String[] args) throws IOException {
XProperty options = new XProperty(20);
// graphics
options.put(Option.Graphics_FullScreenMode.toString(), "true");
options.put(Option.Graphics_MainScreenControlsRight.toString(), "true");
// music
options.put(Option.Music_Mute.toString(), "false");
// general
options.put(Option.General_Version.toString(), "0.1.4 (demo)");
Resource resource = ResourceUtils.asResource("options.default.xml");
XMLHelper.write(resource, options);
}