mirror of https://github.com/libAthena/athena.git
25 lines
438 B
C++
25 lines
438 B
C++
#ifndef SSFILEREADER_HPP
|
|
#define SSFILEREADER_HPP
|
|
|
|
#include "Athena/MemoryReader.hpp"
|
|
|
|
namespace Athena
|
|
{
|
|
class SkywardSwordFile;
|
|
namespace io
|
|
{
|
|
class SkywardSwordFileReader : public MemoryCopyReader
|
|
{
|
|
MEMORYCOPYREADER_BASE();
|
|
public:
|
|
|
|
SkywardSwordFileReader(atUint8* data, atUint64 length);
|
|
SkywardSwordFileReader(const std::string& filename);
|
|
|
|
SkywardSwordFile* read();
|
|
};
|
|
} // io
|
|
} // zelda
|
|
|
|
#endif // SSFILEREADER_HPP
|