mirror of
https://github.com/0015/ThatProject.git
synced 2026-01-12 09:17:42 +03:00
11 lines
179 B
C++
11 lines
179 B
C++
#include "FileIO.h"
|
|
#include <Update.h>
|
|
|
|
class Updater {
|
|
private:
|
|
void performUpdate(Stream& updateSource, size_t updateSize);
|
|
|
|
public:
|
|
bool updateFromFS(FileIO** fileIO);
|
|
};
|