mirror of
https://github.com/libAthena/athena.git
synced 2025-12-09 13:38:03 +00:00
23 lines
408 B
C++
23 lines
408 B
C++
#ifndef SSFILEREADER_HPP
|
|
#define SSFILEREADER_HPP
|
|
|
|
#include "athena/MemoryReader.hpp"
|
|
|
|
namespace athena
|
|
{
|
|
class SkywardSwordFile;
|
|
namespace io
|
|
{
|
|
class SkywardSwordFileReader : public MemoryCopyReader
|
|
{
|
|
public:
|
|
SkywardSwordFileReader(atUint8* data, atUint64 length);
|
|
SkywardSwordFileReader(const std::string& filename);
|
|
|
|
SkywardSwordFile* read();
|
|
};
|
|
} // io
|
|
} // zelda
|
|
|
|
#endif // SSFILEREADER_HPP
|