mirror of
https://github.com/zeldaret/ss
synced 2026-05-30 08:56:34 -04:00
18 lines
328 B
C++
18 lines
328 B
C++
#ifndef NAND_RESULT_TRACKER_H
|
|
#define NAND_RESULT_TRACKER_H
|
|
|
|
#include "egg/core/eggHeap.h"
|
|
#include "rvl/NAND.h"
|
|
|
|
class NandResultTracker {
|
|
public:
|
|
static void create(EGG::Heap *heap);
|
|
static NandResultTracker *GetInstance();
|
|
bool isFailure(NANDResult status);
|
|
|
|
private:
|
|
NandResultTracker *sInstance;
|
|
};
|
|
|
|
#endif
|