Make TileSheet import write tilesheets to ROM FS

This commit is contained in:
2017-05-22 01:37:34 -05:00
parent bc69e67a5b
commit 38a3113ab6
6 changed files with 44 additions and 13 deletions
+7 -3
View File
@@ -31,11 +31,15 @@ class Project: public QObject {
void create();
int open();
int openRomFs();
void save();
int saveRomFs();
ox::FileSystem *romFS();
ox::FileSystem *romFs();
int mkdir(QString path);
int write(QString path, uint8_t *buff, size_t buffLen);
};
}