Add new World wizard

This commit is contained in:
2017-12-20 22:41:14 -06:00
parent 2edee450aa
commit 4e50d80f5f
31 changed files with 415 additions and 94 deletions
+7 -4
View File
@@ -33,16 +33,19 @@ class Project: public QObject {
int openRomFs();
int saveRomFs();
int saveRomFs() const;
ox::FileSystem *romFs();
int mkdir(QString path);
int mkdir(QString path) const;
int write(QString path, uint8_t *buff, size_t buffLen);
int write(QString path, uint8_t *buff, size_t buffLen) const;
ox::FileStat stat(QString path) const;
signals:
void updated(QString path);
void updated(QString path) const;
};
}