metaforce/Runtime/MP1/CGBASupport.hpp

33 lines
554 B
C++
Raw Normal View History

2016-12-14 22:56:59 +00:00
#ifndef __URDE_CGBASUPPORT_HPP__
#define __URDE_CGBASUPPORT_HPP__
#include "CDvdFile.hpp"
2016-12-14 22:56:59 +00:00
namespace urde
{
namespace MP1
{
class CGBASupport : public CDvdFile
2016-12-14 22:56:59 +00:00
{
u32 x28_fileSize;
std::unique_ptr<u8[]> x2c_buffer;
std::shared_ptr<IDvdRequest> x30_dvdReq;
u32 x34_ = 0;
float x38_ = 0.f;
bool x3c_ = false;
u32 x40_ = -1;
bool x44_ = false;
bool x45_ = false;
static CGBASupport* SharedInstance;
2016-12-14 22:56:59 +00:00
public:
CGBASupport();
~CGBASupport();
2016-12-16 04:35:49 +00:00
bool IsReady() const;
2016-12-14 22:56:59 +00:00
};
}
}
#endif // __URDE_CGBASUPPORT_HPP__