}
public static RGSSGame loadProject(File path) {
YMessagesDialog errors = new YMessagesDialog(I18N.t("Can not read project from {0}.", path), "game.start");
RGSSGame p = new RGSSGame(path, errors);
if (!errors.showQuestion()) {
return null;
}
return p;
}