mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 15:01:38 -04:00
31 lines
535 B
C++
31 lines
535 B
C++
#ifndef D_DVD_DRIVE_ERROR_H
|
|
#define D_DVD_DRIVE_ERROR_H
|
|
|
|
#include "common.h"
|
|
#include "egg/core/eggHeap.h"
|
|
|
|
class dDvdDriveError_c {
|
|
public:
|
|
static void create(EGG::Heap *heap);
|
|
void draw();
|
|
void execute();
|
|
void init();
|
|
bool isError() const;
|
|
|
|
static dDvdDriveError_c *GetInstance() {
|
|
return sInstance;
|
|
}
|
|
|
|
s32 getStatus() const {
|
|
return mDvdDriveStatus;
|
|
}
|
|
|
|
private:
|
|
static dDvdDriveError_c *sInstance;
|
|
|
|
/* 0x00 */ s32 mDvdDriveStatus;
|
|
/* 0x04 */ bool mIsError;
|
|
};
|
|
|
|
#endif
|