PicoWaveTracker/Persistence.h
2026-03-06 21:47:33 +01:00

17 lines
365 B
C++

#ifndef PERSISTENCE_H
#define PERSISTENCE_H
#include "TrackerTypes.h"
#include "config.h"
class Persistence {
public:
static void saveSequence(bool quiet);
static bool loadSequence();
static void savePatch(int bank, int slot);
static void loadPatch(int bank, int slot, Step (*scratchBuffer)[NUM_STEPS]);
static void factoryReset();
};
#endif